diff --git a/code/__defines/species_languages.dm b/code/__defines/species_languages.dm
index 81a55f84d7..89942a150f 100644
--- a/code/__defines/species_languages.dm
+++ b/code/__defines/species_languages.dm
@@ -50,6 +50,8 @@
#define LANGUAGE_MINBUS "Minbus"
#define LANGUAGE_EVENT1 "Occursus"
#define LANGUAGE_AKHANI "Akhani"
+#define LANGUAGE_SIIK_TAJR "Siik'Tajr"
+#define LANGUAGE_SIIK_ALAI "Siik'alai"
// Language flags.
#define WHITELISTED 1 // Language is available if the speaker is whitelisted.
diff --git a/code/__defines/species_languages_vr.dm b/code/__defines/species_languages_vr.dm
index e93ed879fd..8c5c505f82 100644
--- a/code/__defines/species_languages_vr.dm
+++ b/code/__defines/species_languages_vr.dm
@@ -4,7 +4,6 @@
#define LANGUAGE_ECUREUILIAN "Ecureuilian"
#define LANGUAGE_DAEMON "Daemon"
#define LANGUAGE_ENOCHIAN "Enochian"
-#define LANGUAGE_SIIK_TAJR "Siik'Tajr"
#define LANGUAGE_CHIMPANZEE "Chimpanzee"
#define LANGUAGE_NEAERA "Neaera"
diff --git a/code/controllers/subsystems/planets.dm b/code/controllers/subsystems/planets.dm
index 2bb09050f4..3b3675d5c3 100644
--- a/code/controllers/subsystems/planets.dm
+++ b/code/controllers/subsystems/planets.dm
@@ -62,7 +62,7 @@ SUBSYSTEM_DEF(planets)
while(currentlist.len)
var/turf/simulated/OT = currentlist[currentlist.len]
currentlist.len--
- if(istype(OT) && z_to_planet[OT.z])
+ if(istype(OT) && z_to_planet.len >= OT.z && z_to_planet[OT.z])
var/datum/planet/P = z_to_planet[OT.z]
P.planet_floors |= OT
OT.vis_contents |= P.weather_holder.visuals
@@ -73,7 +73,7 @@ SUBSYSTEM_DEF(planets)
while(currentlist.len)
var/turf/unsimulated/wall/planetary/PW = currentlist[currentlist.len]
currentlist.len--
- if(istype(PW) && z_to_planet[PW.z])
+ if(istype(PW) && z_to_planet.len >= PW.z && z_to_planet[PW.z])
var/datum/planet/P = z_to_planet[PW.z]
P.planet_walls |= PW
if(!initial && MC_TICK_CHECK)
diff --git a/code/game/gamemodes/changeling/absorbed_dna.dm b/code/game/gamemodes/changeling/absorbed_dna.dm
index 3c23f0270c..26d433cd8c 100644
--- a/code/game/gamemodes/changeling/absorbed_dna.dm
+++ b/code/game/gamemodes/changeling/absorbed_dna.dm
@@ -5,12 +5,14 @@
var/list/languages
var/identifying_gender
var/list/flavour_texts
+ var/list/genMods
-/datum/absorbed_dna/New(var/newName, var/newDNA, var/newSpecies, var/newLanguages, var/newIdentifying_Gender, var/list/newFlavour)
+/datum/absorbed_dna/New(var/newName, var/newDNA, var/newSpecies, var/newLanguages, var/newIdentifying_Gender, var/list/newFlavour, var/list/newGenMods)
..()
name = newName
dna = newDNA
speciesName = newSpecies
languages = newLanguages
identifying_gender = newIdentifying_Gender
- flavour_texts = newFlavour ? newFlavour.Copy() : null
\ No newline at end of file
+ flavour_texts = newFlavour ? newFlavour.Copy() : null
+ genMods = newGenMods ? newGenMods.Copy() : null
\ No newline at end of file
diff --git a/code/game/gamemodes/changeling/powers/absorb.dm b/code/game/gamemodes/changeling/powers/absorb.dm
index f76fd5ca47..45b230b00c 100644
--- a/code/game/gamemodes/changeling/powers/absorb.dm
+++ b/code/game/gamemodes/changeling/powers/absorb.dm
@@ -78,7 +78,7 @@
src << "We can now re-adapt, reverting our evolution so that we may start anew, if needed."
- var/datum/absorbed_dna/newDNA = new(T.real_name, T.dna, T.species.name, T.languages, T.identifying_gender, T.flavor_texts)
+ var/datum/absorbed_dna/newDNA = new(T.real_name, T.dna, T.species.name, T.languages, T.identifying_gender, T.flavor_texts, T.modifiers)
absorbDNA(newDNA)
if(T.mind && T.mind.changeling)
diff --git a/code/game/gamemodes/changeling/powers/transform.dm b/code/game/gamemodes/changeling/powers/transform.dm
index 9225792575..6dd16061a1 100644
--- a/code/game/gamemodes/changeling/powers/transform.dm
+++ b/code/game/gamemodes/changeling/powers/transform.dm
@@ -48,6 +48,13 @@
src.UpdateAppearance()
domutcheck(src, null)
changeling_update_languages(changeling.absorbed_languages)
+ if(chosen_dna.genMods)
+ var/mob/living/carbon/human/self = src
+ for(var/datum/modifier/mod in self.modifiers)
+ self.modifiers.Remove(mod.type)
+
+ for(var/datum/modifier/mod in chosen_dna.genMods)
+ self.modifiers.Add(mod.type)
src.verbs -= /mob/proc/changeling_transform
spawn(10)
diff --git a/code/game/gamemodes/technomancer/spell_objs_helpers.dm b/code/game/gamemodes/technomancer/spell_objs_helpers.dm
index f11c027566..105b3b3e9c 100644
--- a/code/game/gamemodes/technomancer/spell_objs_helpers.dm
+++ b/code/game/gamemodes/technomancer/spell_objs_helpers.dm
@@ -31,7 +31,7 @@
return TRUE
/obj/item/weapon/spell/proc/within_range(var/atom/target, var/max_range = 7) // Beyond 7 is off the screen.
- if(range(get_dist(owner, target) <= max_range))
+ if(target in view(max_range, owner))
return TRUE
return FALSE
diff --git a/code/game/gamemodes/technomancer/spells/apportation.dm b/code/game/gamemodes/technomancer/spells/apportation.dm
index 9fafc47ae3..452ddc52fa 100644
--- a/code/game/gamemodes/technomancer/spells/apportation.dm
+++ b/code/game/gamemodes/technomancer/spells/apportation.dm
@@ -21,11 +21,13 @@
if(!AM.loc) //Don't teleport HUD telements to us.
return
if(AM.anchored)
- user << "\The [hit_atom] is firmly secured and anchored, you can't move it!"
+ to_chat(user, "\The [hit_atom] is firmly secured and anchored, you can't move it!")
return
+
if(!within_range(hit_atom) && !check_for_scepter())
- user << "\The [hit_atom] is too far away."
+ to_chat(user, "\The [hit_atom] is too far away.")
return
+
//Teleporting an item.
if(istype(hit_atom, /obj/item))
var/obj/item/I = hit_atom
@@ -47,7 +49,7 @@
//Now let's try to teleport a living mob.
else if(istype(hit_atom, /mob/living))
var/mob/living/L = hit_atom
- L << "You are teleported towards \the [user]."
+ to_chat(L, "You are teleported towards \the [user].")
var/datum/effect/effect/system/spark_spread/s1 = new /datum/effect/effect/system/spark_spread
var/datum/effect/effect/system/spark_spread/s2 = new /datum/effect/effect/system/spark_spread
s1.set_up(2, 1, user)
@@ -60,7 +62,7 @@
spawn(1 SECOND)
if(!user.Adjacent(L))
- user << "\The [L] is out of your reach."
+ to_chat(user, "\The [L] is out of your reach.")
qdel(src)
return
diff --git a/code/game/jobs/job/civilian_chaplain.dm b/code/game/jobs/job/civilian_chaplain.dm
index a3189741b4..e24e462fdf 100644
--- a/code/game/jobs/job/civilian_chaplain.dm
+++ b/code/game/jobs/job/civilian_chaplain.dm
@@ -148,7 +148,8 @@
feedback_set_details("religion_deity","[new_deity]")
feedback_set_details("religion_book","[new_book_style]")
return 1
-/* IF you uncomment this, every time the mob preview updates it makes a new PDA. It seems to work just fine and display without it, so why this exists, haven't a clue. -Hawk
+
+/* If you uncomment this, every time the mob preview updates it makes a new PDA. It seems to work just fine and display without it, so why this exists, haven't a clue. -Hawk
/datum/job/chaplain/equip_preview(var/mob/living/carbon/human/H, var/alt_title)
return equip(H, alt_title, FALSE)
*/
diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm
index 391405714c..fe09f30410 100644
--- a/code/game/objects/items/stacks/medical.dm
+++ b/code/game/objects/items/stacks/medical.dm
@@ -170,7 +170,7 @@
singular_name = "advanced trauma kit"
desc = "An advanced trauma kit for severe injuries."
icon_state = "traumakit"
- heal_brute = 3
+ heal_brute = 7 //VOREStation Edit
origin_tech = list(TECH_BIO = 1)
apply_sounds = list('sound/effects/rip1.ogg','sound/effects/rip2.ogg','sound/effects/tape.ogg')
@@ -198,8 +198,8 @@
continue
if (W.bandaged && W.disinfected)
continue
- if(used == amount)
- break
+ //if(used == amount) //VOREStation Edit
+ // break //VOREStation Edit
if(!do_mob(user, M, W.damage/5))
to_chat(user, "You must stand still to bandage wounds.")
break
@@ -219,7 +219,7 @@
W.disinfect()
W.heal_damage(heal_brute)
playsound(src, pick(apply_sounds), 25)
- used++
+ used = 1 //VOREStation Edit
affecting.update_damages()
if(used == amount)
if(affecting.is_bandaged())
@@ -233,7 +233,7 @@
singular_name = "advanced burn kit"
desc = "An advanced treatment kit for severe burns."
icon_state = "burnkit"
- heal_burn = 3
+ heal_burn = 7 //VOREStation Edit
origin_tech = list(TECH_BIO = 1)
apply_sounds = list('sound/effects/ointment.ogg')
diff --git a/code/game/turfs/flooring/flooring_decals_vr.dm b/code/game/turfs/flooring/flooring_decals_vr.dm
index d0f1e2e70c..5326eeff86 100644
--- a/code/game/turfs/flooring/flooring_decals_vr.dm
+++ b/code/game/turfs/flooring/flooring_decals_vr.dm
@@ -10,4 +10,91 @@
/obj/effect/floor_decal/industrial/outline/red
name = "red outline"
- color = COLOR_RED
\ No newline at end of file
+ color = COLOR_RED
+/obj/effect/floor_decal/borderfloor/shifted
+ icon_state = "borderfloor_shifted"
+
+/obj/effect/floor_decal/borderfloorblack/shifted
+ icon_state = "borderfloor_shifted"
+
+/obj/effect/floor_decal/borderfloorwhite/shifted
+ icon_state = "borderfloor_shifted"
+
+/obj/effect/floor_decal/corner/beige/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/black/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/blue/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/brown/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/green/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/grey/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/lightgrey/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/lightorange
+ name = "orange corner"
+ color = "#ed983d"
+
+/obj/effect/floor_decal/corner/lightorange/diagonal
+ icon_state = "corner_white_diagonal"
+
+/obj/effect/floor_decal/corner/lightorange/full
+ icon_state = "corner_white_full"
+
+/obj/effect/floor_decal/corner/lightorange/three_quarters
+ icon_state = "corner_white_three_quarters"
+
+/obj/effect/floor_decal/corner/lightorange/border
+ icon_state = "bordercolor"
+
+/obj/effect/floor_decal/corner/lightorange/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/lightorange/bordercorner
+ icon_state = "bordercolorcorner"
+
+/obj/effect/floor_decal/corner/lightorange/bordercorner2
+ icon_state = "bordercolorcorner2"
+
+/obj/effect/floor_decal/corner/lightorange/borderfull
+ icon_state = "bordercolorfull"
+
+/obj/effect/floor_decal/corner/lightorange/bordercee
+ icon_state = "bordercolorcee"
+
+/obj/effect/floor_decal/corner/lime/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/mauve/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/orange/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/paleblue/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/pink/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/purple/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/red/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/white/border/shifted
+ icon_state = "bordercolor_shifted"
+
+/obj/effect/floor_decal/corner/yellow/border/shifted
+ icon_state = "bordercolor_shifted"
diff --git a/code/game/turfs/simulated/dungeon/wall.dm b/code/game/turfs/simulated/dungeon/wall.dm
index 176c10142c..c1a02cde66 100644
--- a/code/game/turfs/simulated/dungeon/wall.dm
+++ b/code/game/turfs/simulated/dungeon/wall.dm
@@ -12,6 +12,9 @@
/turf/simulated/wall/dungeon/ex_act()
return
+/turf/simulated/wall/dungeon/take_damage() //These things are suppose to be unbreakable
+ return
+
/turf/simulated/wall/solidrock //for more stylish anti-cheese.
name = "solid rock"
desc = "This rock seems dense, impossible to drill."
@@ -37,4 +40,7 @@
return
/turf/simulated/wall/solidrock/ex_act()
+ return
+
+/turf/simulated/wall/solidrock/take_damage() //These things are suppose to be unbreakable
return
\ No newline at end of file
diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm
index 9161f65517..1c9ec29880 100644
--- a/code/modules/client/preference_setup/loadout/loadout_suit.dm
+++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm
@@ -241,6 +241,46 @@ datum/gear/suit/duster
path = /obj/item/clothing/accessory/poncho/roles/cloak/hop
allowed_roles = list("Head of Personnel")
+/datum/gear/suit/roles/poncho/cloak/cargo
+ display_name = "cloak, cargo"
+ path = /obj/item/clothing/accessory/poncho/roles/cloak/cargo
+ allowed_roles = list("Cargo Technician","Quartermaster")
+
+/datum/gear/suit/roles/poncho/cloak/mining
+ display_name = "cloak, cargo"
+ path = /obj/item/clothing/accessory/poncho/roles/cloak/mining
+ allowed_roles = list("Quartermaster","Shaft Miner")
+
+/datum/gear/suit/roles/poncho/cloak/security
+ display_name = "cloak, security"
+ path = /obj/item/clothing/accessory/poncho/roles/cloak/security
+ allowed_roles = list("Head of Security","Detective","Warden","Security Officer")
+
+/datum/gear/suit/roles/poncho/cloak/service
+ display_name = "cloak, service"
+ path = /obj/item/clothing/accessory/poncho/roles/cloak/service
+ allowed_roles = list("Head of Personnel","Bartender","Botanist","Janitor","Chef","Librarian")
+
+/datum/gear/suit/roles/poncho/cloak/engineer
+ display_name = "cloak, engineer"
+ path = /obj/item/clothing/accessory/poncho/roles/cloak/engineer
+ allowed_roles = list("Chief Engineer","Station Engineer")
+
+/datum/gear/suit/roles/poncho/cloak/atmos
+ display_name = "cloak, atmos"
+ path = /obj/item/clothing/accessory/poncho/roles/cloak/atmos
+ allowed_roles = list("Chief Engineer","Atmospheric Technician")
+
+/datum/gear/suit/roles/poncho/cloak/research
+ display_name = "cloak, science"
+ path = /obj/item/clothing/accessory/poncho/roles/cloak/research
+ allowed_roles = list("Research Director","Scientist", "Roboticist", "Xenobiologist")
+
+/datum/gear/suit/roles/poncho/cloak/medical
+ display_name = "cloak, medical"
+ path = /obj/item/clothing/accessory/poncho/roles/cloak/medical
+ allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist", "Psychiatrist")
+
/datum/gear/suit/unathi_robe
display_name = "roughspun robe"
path = /obj/item/clothing/suit/unathi/robe
diff --git a/code/modules/clothing/head/helmet_vr.dm b/code/modules/clothing/head/helmet_vr.dm
index fc71016f7e..8f7ec139ca 100644
--- a/code/modules/clothing/head/helmet_vr.dm
+++ b/code/modules/clothing/head/helmet_vr.dm
@@ -9,8 +9,8 @@
/obj/item/clothing/head/helmet/combat/USDF
name = "marine helmet"
desc = "If you wanna to keep your brain inside yo' head, you'd best put this on!"
- icon_state = "UNSC_helm"
- item_state = "UNSC_helm"
+ icon_state = "unsc_helm"
+ item_state = "unsc_helm"
icon = 'icons/obj/clothing/hats_vr.dmi'
icon_override = 'icons/mob/head_vr.dmi'
diff --git a/code/modules/clothing/spacesuits/rig/modules/utility_vr.dm b/code/modules/clothing/spacesuits/rig/modules/utility_vr.dm
index 83456629a1..21fe6fb9cf 100644
--- a/code/modules/clothing/spacesuits/rig/modules/utility_vr.dm
+++ b/code/modules/clothing/spacesuits/rig/modules/utility_vr.dm
@@ -104,14 +104,14 @@
interface_name = "mounted chem injector"
interface_desc = "Dispenses loaded chemicals via an arm-mounted injector."
- var/max_reagent_volume = 10 //Regen to this volume
+ var/max_reagent_volume = 20 //Regen to this volume
var/chems_to_use = 5 //Per injection
charges = list(
- list("inaprovaline", "inaprovaline", 0, 10),
- list("tricordrazine", "tricordrazine", 0, 10),
- list("tramadol", "tramadol", 0, 10),
- list("dexalin plus", "dexalinp", 0, 10)
+ list("inaprovaline", "inaprovaline", 0, 20),
+ list("dylovene", "dylovene", 0, 20),
+ list("paracetamol", "paracetamol", 0, 20),
+ list("dexalin", "dexalin", 0, 20)
)
/obj/item/rig_module/rescue_pharm/process()
diff --git a/code/modules/clothing/suits/armor_vr.dm b/code/modules/clothing/suits/armor_vr.dm
index 349b0e01e7..76d55dcc82 100644
--- a/code/modules/clothing/suits/armor_vr.dm
+++ b/code/modules/clothing/suits/armor_vr.dm
@@ -60,7 +60,7 @@
/obj/item/clothing/suit/armor/combat/USDF
name = "marine body armor"
desc = "When I joined the Corps, we didn't have any fancy-schmanzy armor. We had sticks! Two sticks, and a rock for the whole platoon–and we had to share the rock!"
- icon_state = "UNSC_armor"
+ icon_state = "unsc_armor"
icon = 'icons/obj/clothing/suits_vr.dmi'
icon_override = 'icons/mob/suit_vr.dmi'
body_parts_covered = UPPER_TORSO|LOWER_TORSO // ToDo: Break up the armor into smaller bits.
diff --git a/code/modules/clothing/under/accessories/clothing.dm b/code/modules/clothing/under/accessories/clothing.dm
index eaab8b290a..02fab3e95a 100644
--- a/code/modules/clothing/under/accessories/clothing.dm
+++ b/code/modules/clothing/under/accessories/clothing.dm
@@ -121,8 +121,8 @@
* Cloak
*/
/obj/item/clothing/accessory/poncho/roles/cloak
- name = "brown cloak"
- desc = "An elaborate brown cloak."
+ name = "quartermaster's cloak"
+ desc = "An elaborate brown and gold cloak."
icon_state = "qmcloak"
item_state = "qmcloak"
body_parts_covered = null
@@ -169,6 +169,54 @@
icon_state = "capcloak"
item_state = "capcloak"
+/obj/item/clothing/accessory/poncho/roles/cloak/cargo
+ name = "brown cloak"
+ desc = "A simple brown and black cloak."
+ icon_state = "cargocloak"
+ item_state = "cargocloak"
+
+/obj/item/clothing/accessory/poncho/roles/cloak/mining
+ name = "trimmed purple cloak"
+ desc = "A trimmed purple and brown cloak."
+ icon_state = "miningcloak"
+ item_state = "miningcloak"
+
+/obj/item/clothing/accessory/poncho/roles/cloak/security
+ name = "red cloak"
+ desc = "A simple red and black cloak."
+ icon_state = "seccloak"
+ item_state = "seccloak"
+
+/obj/item/clothing/accessory/poncho/roles/cloak/service
+ name = "green cloak"
+ desc = "A simple green and blue cloak."
+ icon_state = "servicecloak"
+ item_state = "servicecloak"
+
+/obj/item/clothing/accessory/poncho/roles/cloak/engineer
+ name = "gold cloak"
+ desc = "A simple gold and brown cloak."
+ icon_state = "engicloak"
+ item_state = "engicloak"
+
+/obj/item/clothing/accessory/poncho/roles/cloak/atmos
+ name = "yellow cloak"
+ desc = "A trimmed yellow and blue cloak."
+ icon_state = "atmoscloak"
+ item_state = "atmoscloak"
+
+/obj/item/clothing/accessory/poncho/roles/cloak/research
+ name = "purple cloak"
+ desc = "A simple purple and white cloak."
+ icon_state = "scicloak"
+ item_state = "scicloak"
+
+/obj/item/clothing/accessory/poncho/roles/cloak/medical
+ name = "blue cloak"
+ desc = "A simple blue and white cloak."
+ icon_state = "medcloak"
+ item_state = "medcloak"
+
/obj/item/clothing/accessory/hawaii
name = "flower-pattern shirt"
desc = "You probably need some welder googles to look at this."
diff --git a/code/modules/mob/language/station.dm b/code/modules/mob/language/station.dm
index ff85984bb4..324bd2ccb8 100644
--- a/code/modules/mob/language/station.dm
+++ b/code/modules/mob/language/station.dm
@@ -77,6 +77,15 @@
"kar","yar","kzar","rha","hrar","err","fer","rir","rar","yarr","arr","ii'r","jar","kur","ran","rii","ii",
"nai","ou","kah","oa","ama","uuk","bel","chi","ayt","kay","kas","akor","tam","yir","enai")
+/datum/language/tajsign
+ name = LANGUAGE_SIIK_ALAI
+ desc = "A standardized Tajaran sign language that was developed in Zarraya and gradually adopted by other nations, incorporating \
+ hand gestures and movements of the ears and tail."
+ signlang_verb = list("gestures with their hands", "gestures with their ears and tail", "gestures with their ears, tail and hands")
+ colour = "tajaran"
+ key = "l"
+ flags = WHITELISTED | SIGNLANG | NO_STUTTER | NONVERBAL
+
/datum/language/tajaran/get_random_name(var/gender)
var/new_name = ..(gender,1)
diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm
index 3cef432949..eb473989f2 100644
--- a/code/modules/mob/living/carbon/human/emote.dm
+++ b/code/modules/mob/living/carbon/human/emote.dm
@@ -1,6 +1,6 @@
/mob/living/carbon/human/emote(var/act,var/m_type=1,var/message = null)
var/param = null
-
+
var/datum/gender/T = gender_datums[get_visible_gender()]
if (findtext(act, "-", 1, null))
@@ -80,10 +80,11 @@
//Promethean-only emotes
if("squish")
- if(!species.bump_flag == SLIME) //That should do, yaya.
+ /* VOREStation Removal Start - Eh. People can squish maybe.
+ if(species.bump_flag != SLIME) //This should definitely do it.
src << "You are not a slime thing!"
return
-
+ */ //VOREStation Removal End
playsound(src.loc, 'sound/effects/slime_squish.ogg', 50, 0) //Credit to DrMinky (freesound.org) for the sound.
message = "squishes."
m_type = 1
@@ -739,7 +740,7 @@
set name = "Set Pose"
set desc = "Sets a description which will be shown when someone examines you."
set category = "IC"
-
+
var/datum/gender/T = gender_datums[get_visible_gender()]
pose = sanitize(input(usr, "This is [src]. [T.he]...", "Pose", null) as text)
diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm
index 8619dee42d..efa040bf2b 100644
--- a/code/modules/mob/living/carbon/human/life.dm
+++ b/code/modules/mob/living/carbon/human/life.dm
@@ -1041,7 +1041,7 @@
adjustHalLoss(-1)
if (drowsyness)
- drowsyness--
+ drowsyness = max(0, drowsyness - 1)
eye_blurry = max(2, eye_blurry)
if (prob(5))
sleeping += 1
diff --git a/code/modules/mob/living/carbon/human/species/station/station.dm b/code/modules/mob/living/carbon/human/species/station/station.dm
index a586714eaa..abb8d88d9f 100644
--- a/code/modules/mob/living/carbon/human/species/station/station.dm
+++ b/code/modules/mob/living/carbon/human/species/station/station.dm
@@ -155,7 +155,7 @@
metabolic_rate = 1.1
gluttonous = 1
num_alternate_languages = 3
- secondary_langs = list(LANGUAGE_SIIK, LANGUAGE_AKHANI)
+ secondary_langs = list(LANGUAGE_SIIK, LANGUAGE_AKHANI, LANGUAGE_SIIK_ALAI)
name_language = LANGUAGE_SIIK
species_language = LANGUAGE_SIIK
health_hud_intensity = 2.5
diff --git a/code/modules/mob/living/carbon/human/species/station/station_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_vr.dm
index 12077287e0..b33397a8d2 100644
--- a/code/modules/mob/living/carbon/human/species/station/station_vr.dm
+++ b/code/modules/mob/living/carbon/human/species/station/station_vr.dm
@@ -311,7 +311,6 @@
icobase = 'icons/mob/human_races/r_tajaran_vr.dmi'
deform = 'icons/mob/human_races/r_def_tajaran_vr.dmi'
tail_animation = 'icons/mob/species/tajaran/tail_vr.dmi'
- secondary_langs = list(LANGUAGE_SIIK, LANGUAGE_AKHANI, LANGUAGE_SIIK_TAJR)
color_mult = 1
min_age = 18
gluttonous = 0 //Moving this here so I don't have to fix this conflict every time polaris glances at station.dm
diff --git a/code/modules/mob/living/silicon/robot/death.dm b/code/modules/mob/living/silicon/robot/death.dm
index 8de8e405a4..99529daed8 100644
--- a/code/modules/mob/living/silicon/robot/death.dm
+++ b/code/modules/mob/living/silicon/robot/death.dm
@@ -15,6 +15,8 @@
if(module)
var/obj/item/weapon/gripper/G = locate(/obj/item/weapon/gripper) in module
if(G) G.drop_item()
+ var/obj/item/device/dogborg/sleeper/S = locate(/obj/item/device/dogborg/sleeper) in module //VOREStation edit.
+ if(S) S.go_out() //VOREStation edit.
remove_robot_verbs()
sql_report_cyborg_death(src)
..(gibbed,"shudders violently for a moment, then becomes motionless, its eyes slowly darkening.")
diff --git a/code/modules/paperwork/photography.dm b/code/modules/paperwork/photography.dm
index d0de1294ba..535debad21 100644
--- a/code/modules/paperwork/photography.dm
+++ b/code/modules/paperwork/photography.dm
@@ -134,7 +134,7 @@ var/global/photo_count = 0
var/icon_on = "camera"
var/icon_off = "camera_off"
var/size = 3
- var/picture_planes = list()
+ var/list/picture_planes = list()
/obj/item/device/camera/verb/change_size()
set name = "Set Photo Focus"
diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm
index 7a5de8ffe0..cac48bd203 100644
--- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm
+++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm
@@ -32,7 +32,7 @@
if(alien == IS_SLIME)
chem_effective = 0.75
if(alien != IS_DIONA)
- M.heal_organ_damage(6 * removed * chem_effective, 0)
+ M.heal_organ_damage(4 * removed * chem_effective, 0) //VOREStation Edit
/datum/reagent/bicaridine/overdose(var/mob/living/carbon/M, var/alien, var/removed)
..()
@@ -67,7 +67,7 @@
chem_effective = 0.5
M.adjustBruteLoss(2 * removed) //Mends burns, but has negative effects with a Promethean's skeletal structure.
if(alien != IS_DIONA)
- M.heal_organ_damage(0, 6 * removed * chem_effective)
+ M.heal_organ_damage(0, 4 * removed * chem_effective) //VOREStation edit
/datum/reagent/dermaline
name = "Dermaline"
@@ -85,7 +85,7 @@
if(alien == IS_SLIME)
chem_effective = 0.75
if(alien != IS_DIONA)
- M.heal_organ_damage(0, 12 * removed * chem_effective)
+ M.heal_organ_damage(0, 8 * removed * chem_effective) //VOREStation edit
/datum/reagent/dylovene
name = "Dylovene"
@@ -141,20 +141,21 @@
color = "#0080FF"
overdose = REAGENTS_OVERDOSE
scannable = 1
+ metabolism = REM * 0.25 //VOREStation Edit
/datum/reagent/dexalin/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
if(alien == IS_VOX)
- M.adjustToxLoss(removed * 6)
+ M.adjustToxLoss(removed * 24) //VOREStation Edit
else if(alien == IS_SLIME && dose >= 15)
M.add_chemical_effect(CE_PAINKILLER, 15)
if(prob(15))
to_chat(M, "You have a moment of clarity as you collapse.")
- M.adjustBrainLoss(-5 * removed)
+ M.adjustBrainLoss(-20 * removed) //VOREStation Edit
M.Weaken(6)
else if(alien != IS_DIONA)
- M.adjustOxyLoss(-15 * removed)
+ M.adjustOxyLoss(-60 * removed) //VOREStation Edit
- holder.remove_reagent("lexorin", 2 * removed)
+ holder.remove_reagent("lexorin", 8 * removed) //VOREStation Edit
/datum/reagent/dexalinp
name = "Dexalin Plus"
@@ -399,7 +400,7 @@
M.Weaken(5)
if(dose >= 10 && M.paralysis < 40)
M.AdjustParalysis(1) //Messing with the core with a simple chemical probably isn't the best idea.
- M.adjustBrainLoss(-30 * removed * chem_effective)
+ M.adjustBrainLoss(-8 * removed * chem_effective) //VOREStation Edit
M.add_chemical_effect(CE_PAINKILLER, 10 * chem_effective)
/datum/reagent/imidazoline
diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm
index e57d7ae582..ae4f0b23f8 100644
--- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm
+++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm
@@ -62,15 +62,17 @@
/datum/reagent/vermicetol
name = "Vermicetol"
id = "vermicetol"
- description = "A potent chemical that treats burn damage at an exceptional rate and lasts a while."
+ description = "A potent chemical that treats physical damage at an exceptional rate."
taste_description = "sparkles"
+ taste_mult = 3
reagent_state = SOLID
color = "#964e06"
- overdose = 10
+ overdose = REAGENTS_OVERDOSE * 0.5
scannable = 1
- metabolism = 0.02
- mrate_static = TRUE
/datum/reagent/vermicetol/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
+ var/chem_effective = 1
+ if(alien == IS_SLIME)
+ chem_effective = 0.75
if(alien != IS_DIONA)
- M.heal_organ_damage(0, 110 * removed) //Not as potent as Kelotane, but lasts LONG.
+ M.heal_organ_damage(8 * removed * chem_effective, 0)
diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm
index ef0d4a2100..724cee9a6f 100644
--- a/code/modules/reagents/reagent_containers/hypospray.dm
+++ b/code/modules/reagents/reagent_containers/hypospray.dm
@@ -49,7 +49,7 @@
if(H.a_intent != I_HELP)
to_chat(user, "[H] is resisting your attempt to inject them with \the [src].")
to_chat(H, " [user] is trying to inject you with \the [src]!")
- if(!do_after(user, 30))
+ if(!do_after(user, 30, H))
return
user.setClickCooldown(DEFAULT_QUICK_COOLDOWN)
diff --git a/code/modules/reagents/reagent_containers/syringes.dm b/code/modules/reagents/reagent_containers/syringes.dm
index 68cc9d6921..3632922d1b 100644
--- a/code/modules/reagents/reagent_containers/syringes.dm
+++ b/code/modules/reagents/reagent_containers/syringes.dm
@@ -333,8 +333,8 @@
/obj/item/weapon/reagent_containers/syringe/inaprovaline/New()
..()
reagents.add_reagent("inaprovaline", 15)
- mode = SYRINGE_INJECT
- update_icon()
+ //mode = SYRINGE_INJECT //VOREStation Edit - Starts capped
+ //update_icon()
/obj/item/weapon/reagent_containers/syringe/antitoxin
name = "Syringe (anti-toxin)"
@@ -343,8 +343,8 @@
/obj/item/weapon/reagent_containers/syringe/antitoxin/New()
..()
reagents.add_reagent("anti_toxin", 15)
- mode = SYRINGE_INJECT
- update_icon()
+ //mode = SYRINGE_INJECT //VOREStation Edit - Starts capped
+ //update_icon()
/obj/item/weapon/reagent_containers/syringe/antiviral
name = "Syringe (spaceacillin)"
@@ -353,8 +353,8 @@
/obj/item/weapon/reagent_containers/syringe/antiviral/New()
..()
reagents.add_reagent("spaceacillin", 15)
- mode = SYRINGE_INJECT
- update_icon()
+ //mode = SYRINGE_INJECT //VOREStation Edit - Starts capped
+ //update_icon()
/obj/item/weapon/reagent_containers/syringe/drugs
name = "Syringe (drugs)"
@@ -365,8 +365,8 @@
reagents.add_reagent("space_drugs", 5)
reagents.add_reagent("mindbreaker", 5)
reagents.add_reagent("cryptobiolin", 5)
- mode = SYRINGE_INJECT
- update_icon()
+ //mode = SYRINGE_INJECT //VOREStation Edit - Starts capped
+ //update_icon()
/obj/item/weapon/reagent_containers/syringe/ld50_syringe/choral/New()
..()
diff --git a/code/modules/reagents/reagent_containers/syringes_vr.dm b/code/modules/reagents/reagent_containers/syringes_vr.dm
index b3c9688919..e940f23454 100644
--- a/code/modules/reagents/reagent_containers/syringes_vr.dm
+++ b/code/modules/reagents/reagent_containers/syringes_vr.dm
@@ -43,7 +43,11 @@
//Dirtiness should be very low if you're the first injectee. If you're spam-injecting 4 people in a row around you though,
//This gives the last one a 30% chance of infection.
- if(prob(dirtiness+(targets.len-1)*10))
+ var/infect_chance = dirtiness //Start with dirtiness
+ if(infect_chance <= 10 && (hash in targets)) //Extra fast uses on target is free
+ infect_chance = 0
+ infect_chance += (targets.len-1)*10 //Extra 10% per extra target
+ if(prob(infect_chance))
log_and_message_admins("[loc] infected [target]'s [eo.name] with \the [src].")
infect_limb(eo)
diff --git a/code/modules/vore/fluffstuff/custom_guns_vr.dm b/code/modules/vore/fluffstuff/custom_guns_vr.dm
index c696182ae9..06d133c441 100644
--- a/code/modules/vore/fluffstuff/custom_guns_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_guns_vr.dm
@@ -541,6 +541,7 @@
/obj/item/projectile/beam/imperial
name = "laser beam"
+ fire_sound = 'sound/weapons/mandalorian.ogg'
icon_state = "darkb"
light_color = "#8837A3"
muzzle_type = /obj/effect/projectile/darkmatter/muzzle
diff --git a/html/changelogs/Anewbe - Apportation.yml b/html/changelogs/Anewbe - Apportation.yml
new file mode 100644
index 0000000000..85607a0932
--- /dev/null
+++ b/html/changelogs/Anewbe - Apportation.yml
@@ -0,0 +1,36 @@
+################################
+# Example Changelog File
+#
+# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
+#
+# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
+# When it is, any changes listed below will disappear.
+#
+# Valid Prefixes:
+# bugfix
+# wip (For works in progress)
+# tweak
+# soundadd
+# sounddel
+# rscadd (general adding of nice things)
+# rscdel (general deleting of nice things)
+# imageadd
+# imagedel
+# maptweak
+# spellcheck (typo fixes)
+# experiment
+#################################
+
+# Your name.
+author: Anewbe
+
+# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
+delete-after: True
+
+# Any changes you've made. See valid prefix list above.
+# INDENT WITH TWO SPACES. NOT TABS. SPACES.
+# SCREW THIS UP AND IT WON'T WORK.
+# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
+# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
+changes:
+ - bugfix: "Technomancer Apportation now properly checks for range and scepter, again."
diff --git a/icons/mob/human_races/cyberlimbs/DSIAkula/dsi_akula.dmi b/icons/mob/human_races/cyberlimbs/DSIAkula/dsi_akula.dmi
index f3d8ee3d6c..e195380829 100644
Binary files a/icons/mob/human_races/cyberlimbs/DSIAkula/dsi_akula.dmi and b/icons/mob/human_races/cyberlimbs/DSIAkula/dsi_akula.dmi differ
diff --git a/icons/mob/human_races/cyberlimbs/DSILizard/dsi_lizard.dmi b/icons/mob/human_races/cyberlimbs/DSILizard/dsi_lizard.dmi
index 60e5589805..7700cc1d17 100644
Binary files a/icons/mob/human_races/cyberlimbs/DSILizard/dsi_lizard.dmi and b/icons/mob/human_races/cyberlimbs/DSILizard/dsi_lizard.dmi differ
diff --git a/icons/mob/human_races/cyberlimbs/DSILizard/dsi_lizard_a.dmi b/icons/mob/human_races/cyberlimbs/DSILizard/dsi_lizard_a.dmi
index c02075001f..4d3223b41e 100644
Binary files a/icons/mob/human_races/cyberlimbs/DSILizard/dsi_lizard_a.dmi and b/icons/mob/human_races/cyberlimbs/DSILizard/dsi_lizard_a.dmi differ
diff --git a/icons/mob/human_races/cyberlimbs/DSISergal/dsi_sergal.dmi b/icons/mob/human_races/cyberlimbs/DSISergal/dsi_sergal.dmi
index 40691ecdfc..4ba00625e1 100644
Binary files a/icons/mob/human_races/cyberlimbs/DSISergal/dsi_sergal.dmi and b/icons/mob/human_races/cyberlimbs/DSISergal/dsi_sergal.dmi differ
diff --git a/icons/mob/human_races/cyberlimbs/DSITajaran/dsi_tajaran.dmi b/icons/mob/human_races/cyberlimbs/DSITajaran/dsi_tajaran.dmi
index 2f277619ec..6fbb54ece4 100644
Binary files a/icons/mob/human_races/cyberlimbs/DSITajaran/dsi_tajaran.dmi and b/icons/mob/human_races/cyberlimbs/DSITajaran/dsi_tajaran.dmi differ
diff --git a/icons/mob/human_races/cyberlimbs/DSITajaran/dsi_tajaran_a.dmi b/icons/mob/human_races/cyberlimbs/DSITajaran/dsi_tajaran_a.dmi
index a4028b0856..7efb08d398 100644
Binary files a/icons/mob/human_races/cyberlimbs/DSITajaran/dsi_tajaran_a.dmi and b/icons/mob/human_races/cyberlimbs/DSITajaran/dsi_tajaran_a.dmi differ
diff --git a/icons/mob/human_races/cyberlimbs/veymed/veymed_main_vr.dmi b/icons/mob/human_races/cyberlimbs/veymed/veymed_main_vr.dmi
index 6cf7bdca7e..61313df9d7 100644
Binary files a/icons/mob/human_races/cyberlimbs/veymed/veymed_main_vr.dmi and b/icons/mob/human_races/cyberlimbs/veymed/veymed_main_vr.dmi differ
diff --git a/icons/mob/human_races/markings_vr.dmi b/icons/mob/human_races/markings_vr.dmi
index cb8c589dc6..0976afd4c0 100644
Binary files a/icons/mob/human_races/markings_vr.dmi and b/icons/mob/human_races/markings_vr.dmi differ
diff --git a/icons/mob/human_races/r_akula.dmi b/icons/mob/human_races/r_akula.dmi
index 70a6e831fb..07692bd2e4 100644
Binary files a/icons/mob/human_races/r_akula.dmi and b/icons/mob/human_races/r_akula.dmi differ
diff --git a/icons/mob/human_races/r_def_akula.dmi b/icons/mob/human_races/r_def_akula.dmi
index 9323e6cbe9..b207d79c72 100644
Binary files a/icons/mob/human_races/r_def_akula.dmi and b/icons/mob/human_races/r_def_akula.dmi differ
diff --git a/icons/mob/human_races/r_def_sergal.dmi b/icons/mob/human_races/r_def_sergal.dmi
index 3222c9e989..92d57804c1 100644
Binary files a/icons/mob/human_races/r_def_sergal.dmi and b/icons/mob/human_races/r_def_sergal.dmi differ
diff --git a/icons/mob/human_races/r_def_tajaran_vr.dmi b/icons/mob/human_races/r_def_tajaran_vr.dmi
index cba7225cf2..02f8981b4f 100644
Binary files a/icons/mob/human_races/r_def_tajaran_vr.dmi and b/icons/mob/human_races/r_def_tajaran_vr.dmi differ
diff --git a/icons/mob/human_races/r_fennec_vr.dmi b/icons/mob/human_races/r_fennec_vr.dmi
index 99fa60881c..0f618b17de 100644
Binary files a/icons/mob/human_races/r_fennec_vr.dmi and b/icons/mob/human_races/r_fennec_vr.dmi differ
diff --git a/icons/mob/human_races/r_harpy_vr.dmi b/icons/mob/human_races/r_harpy_vr.dmi
index b8a12cf32e..b4173fb818 100644
Binary files a/icons/mob/human_races/r_harpy_vr.dmi and b/icons/mob/human_races/r_harpy_vr.dmi differ
diff --git a/icons/mob/human_races/r_human_vr.dmi b/icons/mob/human_races/r_human_vr.dmi
index a01f334215..24413995a7 100644
Binary files a/icons/mob/human_races/r_human_vr.dmi and b/icons/mob/human_races/r_human_vr.dmi differ
diff --git a/icons/mob/human_races/r_lizard_vr.dmi b/icons/mob/human_races/r_lizard_vr.dmi
index e3e78badf2..b2b6dfac12 100644
Binary files a/icons/mob/human_races/r_lizard_vr.dmi and b/icons/mob/human_races/r_lizard_vr.dmi differ
diff --git a/icons/mob/human_races/r_sergal.dmi b/icons/mob/human_races/r_sergal.dmi
index 9cff673211..6a9d8be10a 100644
Binary files a/icons/mob/human_races/r_sergal.dmi and b/icons/mob/human_races/r_sergal.dmi differ
diff --git a/icons/mob/human_races/r_tajaran_vr.dmi b/icons/mob/human_races/r_tajaran_vr.dmi
index dcd55aa529..8f3453df3f 100644
Binary files a/icons/mob/human_races/r_tajaran_vr.dmi and b/icons/mob/human_races/r_tajaran_vr.dmi differ
diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi
index 765550e9df..59e77909e9 100644
Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ
diff --git a/icons/turf/flooring/decals_vr.dmi b/icons/turf/flooring/decals_vr.dmi
index 8c8946d7d8..55930a3b98 100644
Binary files a/icons/turf/flooring/decals_vr.dmi and b/icons/turf/flooring/decals_vr.dmi differ
diff --git a/maps/southern_cross/structures/closets/misc_vr.dm b/maps/southern_cross/structures/closets/misc_vr.dm
index bdc1be0d44..751009ef2e 100644
--- a/maps/southern_cross/structures/closets/misc_vr.dm
+++ b/maps/southern_cross/structures/closets/misc_vr.dm
@@ -29,7 +29,7 @@
/obj/item/clothing/accessory/holster/machete,
/obj/item/weapon/reagent_containers/food/snacks/liquidfood = 2)
-/obj/structure/closet/secure_closet/explorer/initialize()
+/obj/structure/closet/secure_closet/pathfinder/initialize()
if(prob(50))
starts_with += /obj/item/weapon/storage/backpack
else
diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm
index f971955df9..a6b3adeb43 100644
--- a/maps/tether/tether-05-station1.dmm
+++ b/maps/tether/tether-05-station1.dmm
@@ -4018,13 +4018,6 @@
/turf/simulated/wall/r_wall,
/area/engineering/engine_monitoring)
"alG" = (
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- icon_state = "16-0"
- },
/turf/simulated/floor,
/area/engineering/shaft)
"alH" = (
@@ -4040,16 +4033,12 @@
/turf/simulated/floor/tiled,
/area/engineering/engineering_monitoring)
"alK" = (
+/obj/structure/ladder/up,
/obj/structure/cable/green{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/ladder/up,
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/engineering/shaft)
"alN" = (
@@ -4443,17 +4432,11 @@
/turf/simulated/floor/tiled,
/area/engineering/engineering_monitoring)
"anc" = (
-/obj/structure/railing{
- dir = 1
- },
/obj/machinery/alarm{
dir = 8;
pixel_x = 25;
pixel_y = 0
},
-/obj/machinery/light/small{
- dir = 4
- },
/turf/simulated/floor,
/area/engineering/shaft)
"and" = (
@@ -21658,6 +21641,10 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/explorer_meeting)
+"hPi" = (
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/engineering/shaft)
"ibX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -21989,6 +21976,17 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/explorer_meeting)
+"nov" = (
+/obj/structure/railing,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/tech_supply,
+/turf/simulated/floor,
+/area/engineering/shaft)
"nxL" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 10
@@ -22650,6 +22648,20 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/steel_grid,
/area/tether/station/excursion_dock)
+"xMk" = (
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing,
+/turf/simulated/floor,
+/area/engineering/shaft)
"ygn" = (
/turf/simulated/floor/tiled,
/area/tether/station/pathfinder_office)
@@ -28096,8 +28108,8 @@ acJ
acJ
ajp
aac
-aac
-aac
+arq
+arq
abZ
abZ
aps
@@ -28238,9 +28250,9 @@ acJ
acJ
agJ
aac
-aac
-aac
-aac
+arq
+nov
+alG
acz
apw
aql
@@ -28381,8 +28393,8 @@ acJ
agJ
aac
arq
-arq
-arq
+xMk
+hPi
acz
apv
aqk
diff --git a/maps/tether/tether-06-station2.dmm b/maps/tether/tether-06-station2.dmm
index ecc608bb13..40bb62f291 100644
--- a/maps/tether/tether-06-station2.dmm
+++ b/maps/tether/tether-06-station2.dmm
@@ -9,470 +9,390 @@
/turf/simulated/mineral/vacuum,
/area/mine/explored/upper_level)
"ad" = (
-/turf/space,
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_l"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/small{
+ dir = 4
},
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/large_escape_pod1/station{
- base_turf = /turf/simulated/mineral/floor/vacuum
- })
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/security/riot_control)
"ae" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/wall/r_wall,
-/area/security/prison)
+/area/security/brig/bathroom)
"af" = (
/turf/simulated/wall/r_wall,
/area/security/brig/visitation)
"ag" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
+/obj/machinery/shower{
+ pixel_y = 16
},
+/obj/structure/curtain/open/shower/security,
/turf/simulated/floor/tiled,
-/area/security/prison)
+/area/security/brig/bathroom)
"ah" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
"ai" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
},
-/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/shower{
+ pixel_y = 16
+ },
+/obj/structure/curtain/open/shower/security,
/turf/simulated/floor/tiled,
-/area/security/prison)
+/area/security/brig/bathroom)
"aj" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/camera/network/security,
-/turf/simulated/floor/tiled,
-/area/security/prison)
+/turf/simulated/wall/r_wall,
+/area/security/security_cell_hallway)
"ak" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/atm{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
"al" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"am" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"an" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"ao" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"ap" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/security/brig/visitation)
-"aq" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/security/brig/visitation)
-"ar" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/brig/visitation)
-"as" = (
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Brig Visitation"
- },
-/turf/simulated/floor/tiled,
-/area/security/brig/visitation)
-"at" = (
-/turf/simulated/wall,
-/area/maintenance/station/sec_lower)
-"au" = (
-/turf/space,
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
- },
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/large_escape_pod1/station{
- base_turf = /turf/simulated/mineral/floor/vacuum
- })
-"av" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"ax" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"ay" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/industrial/danger,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"az" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/industrial/danger,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aA" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door_timer/cell_3{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aB" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/industrial/danger,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/button/remote/blast_door{
- id = "Cell 3";
- name = "Cell 3 Door";
- pixel_x = -1;
- pixel_y = -28;
- req_access = list(2)
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aC" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door_timer/cell_3{
- id = "Cell 4";
- name = "Cell 4";
- pixel_y = -32
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aD" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/industrial/danger,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/button/remote/blast_door{
- id = "Cell 4";
- name = "Cell 4 Door";
- pixel_x = -1;
- pixel_y = -28;
- req_access = list(2)
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aE" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aF" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aG" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aH" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock{
id_tag = "visitdoor";
name = "Visitation Area";
- req_access = list(63)
+ req_access = list(1)
},
-/turf/simulated/floor/tiled/steel_grid,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"am" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"an" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock{
+ name = "Visitation";
+ req_one_access = list(1,38)
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
/area/security/brig/visitation)
-"aK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"ao" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/effect/floor_decal/corner/red/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
dir = 6
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/security/brig/visitation)
-"aL" = (
-/obj/item/weapon/stool/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"ap" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
dir = 4
},
+/obj/effect/floor_decal/corner/red/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ id = "visitdoor";
+ name = "Visitation Access";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/security/brig/visitation)
-"aM" = (
-/obj/structure/table/steel,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+"aq" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"ar" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/green{
+ icon_state = "map";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"as" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/structure/closet/secure_closet/brig,
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
+"at" = (
+/turf/simulated/wall,
+/area/maintenance/station/sec_lower)
+"au" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner{
+ icon_state = "bordercolorcorner";
dir = 8
},
/turf/simulated/floor/tiled,
-/area/security/brig/visitation)
-"aN" = (
-/obj/structure/cable/green{
- icon_state = "16-0"
+/area/security/brig)
+"av" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig/bathroom)
+"aw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig/bathroom)
+"ax" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig/bathroom)
+"ay" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig/bathroom)
+"az" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/brig,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
+"aA" = (
+/obj/effect/floor_decal/corner/white/border,
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/obj/structure/holohoop{
+ icon_state = "hoop";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
+"aB" = (
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/item/weapon/paper/crumpled{
+ name = "basketball"
},
/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
+"aC" = (
+/obj/effect/floor_decal/corner/white/border{
+ icon_state = "bordercolor";
+ dir = 4
},
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
+"aD" = (
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border,
+/obj/structure/holohoop{
+ icon_state = "hoop";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
+"aE" = (
+/obj/machinery/atmospherics/portables_connector,
+/turf/simulated/floor,
+/area/security/riot_control)
+"aF" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"aG" = (
+/obj/machinery/door/airlock/security{
+ name = "The Hole";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"aH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"aI" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/structure/table/steel,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
+/obj/item/toy/stickhorse,
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
+"aJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/security/riot_control)
+"aK" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/security/riot_control)
+"aL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"aM" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ icon_state = "borderfloorcorner2_black";
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
+"aN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"aO" = (
@@ -484,278 +404,245 @@
/turf/simulated/mineral/floor/vacuum,
/area/mine/explored/upper_level)
"aQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Brig Restroom"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig/bathroom)
+"aR" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/structure/table/steel,
+/obj/item/weapon/deck/cards,
+/obj/item/toy/nanotrasenballoon,
+/obj/item/weapon/material/twohanded/fireaxe/foam,
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
+"aS" = (
+/turf/simulated/wall/r_wall,
+/area/security/brig)
+"aT" = (
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig/bathroom)
+"aU" = (
+/obj/structure/railing,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
+"aV" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"aW" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/red/border{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aR" = (
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aS" = (
-/turf/simulated/wall/r_wall,
-/area/security/brig)
-"aT" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/glass_security{
- name = "Solitary Confinement 2";
- req_access = list(2)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"aU" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/window/brigdoor/southleft{
- name = "Cell 3";
- icon_state = "leftsecure";
- dir = 1;
- req_access = list(2);
- id = "Cell 3"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"aV" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/brig)
-"aW" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/window/brigdoor/southleft{
- dir = 1;
- icon_state = "leftsecure";
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
id = "Cell 4";
- name = "Cell 4";
- req_access = list(2)
+ name = "Cell 4 Door";
+ pixel_x = -28;
+ req_access = list(1,2)
},
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"aX" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green,
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/obj/structure/window/reinforced{
- dir = 4
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
},
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
},
-/turf/simulated/floor/plating,
-/area/security/brig)
-"aY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
},
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/cable/green,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/brig)
-"aZ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/brig)
-"ba" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/brig)
-"bb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/brig/visitation)
-"bc" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/brig/visitation)
-"bd" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/brig/visitation)
-"be" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "Cell 3";
+ name = "Cell 3 Door";
+ pixel_x = -28;
+ req_access = list(1,2)
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"aY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "Cell 2";
+ name = "Cell 2 Door";
+ pixel_x = -28;
+ req_access = list(1,2)
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"aZ" = (
+/obj/machinery/atmospherics/valve/digital,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
+/area/security/riot_control)
+"ba" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Solitary Confinement 1";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"bb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/structure/table/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ icon_state = "bordercolor";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"bc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/table/steel,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ icon_state = "bordercolor";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"bd" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "Cell 1";
+ name = "Cell 1 Door";
+ pixel_x = -28;
+ req_access = list(1,2)
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"be" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"bf" = (
/obj/effect/decal/cleanable/dirt,
@@ -765,141 +652,257 @@
/turf/simulated/wall,
/area/chapel/chapel_morgue)
"bh" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"bi" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"bj" = (
-/obj/item/weapon/pen/crayon/blue,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"bk" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/paper,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"bl" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"bm" = (
-/obj/structure/bed/padded,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"bn" = (
-/obj/item/clothing/suit/ianshirt,
-/obj/machinery/computer/arcade/orion_trail,
-/obj/structure/symbol/ca{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"bo" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+/obj/structure/toilet{
dir = 1
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"bp" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/donkpockets,
-/obj/item/weapon/storage/box/donkpockets,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"bq" = (
-/obj/structure/table/steel,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig/bathroom)
+"bi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/light{
dir = 1
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"br" = (
-/obj/structure/table/steel,
-/obj/item/weapon/book/manual/security_space_law,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"bs" = (
-/obj/machinery/cryopod{
- dir = 2
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = 26
},
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"bt" = (
-/obj/machinery/washing_machine,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"bu" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/security/brig/visitation)
-"bv" = (
-/obj/item/weapon/stool/padded,
+"bj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig/bathroom)
+"bk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Brig Restroom"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig)
+"bl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"bm" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/shifted,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ icon_state = "intact";
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/security/riot_control)
+"bo" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/green,
+/obj/machinery/meter,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/security/riot_control)
+"bp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ icon_state = "intact";
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable/green{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/security/riot_control)
+"bq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"br" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/shifted,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/computer/cryopod{
+ pixel_x = 32
},
/turf/simulated/floor/tiled,
-/area/security/brig/visitation)
-"bw" = (
-/obj/structure/table/steel,
-/obj/machinery/atmospherics/unary/vent_pump/on,
+/area/security/security_cell_hallway)
+"bt" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/effect/floor_decal/corner/lightorange/bordercorner{
+ icon_state = "bordercolorcorner";
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/security/brig/visitation)
+/area/security/brig)
+"bu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner{
+ icon_state = "bordercolorcorner";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"bv" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/green,
+/obj/effect/floor_decal/corner/lightorange/bordercorner,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"bw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner{
+ icon_state = "bordercolorcorner";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
"bx" = (
/obj/effect/floor_decal/rust,
/obj/random/junk,
@@ -927,204 +930,331 @@
/turf/simulated/floor/tiled/dark,
/area/chapel/chapel_morgue)
"bB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/machinery/computer/arcade/orion_trail,
+/obj/item/clothing/suit/ianshirt,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ icon_state = "bordercolor";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"bC" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/door_timer/cell_3{
+ id = "Cell 4";
+ name = "Cell 4";
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"bD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/table/steel,
+/obj/machinery/microwave,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightorange/border{
+ icon_state = "bordercolor";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bE" = (
+/obj/item/weapon/stool/padded,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/effect/floor_decal/corner/lightorange/bordercorner{
+ icon_state = "bordercolorcorner";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/bordercorner{
+ icon_state = "bordercolorcorner";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door_timer/cell_3{
+ id = "Cell 3";
+ name = "Cell 3";
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"bI" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/obj/machinery/button/remote/blast_door{
+ id = "prison_access";
+ name = "Brig Auxillary Access";
+ pixel_x = -24;
+ pixel_y = -8;
+ req_access = list(1,2)
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door_timer/cell_3{
+ id = "Cell 2";
+ name = "Cell 2";
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"bK" = (
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"bL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/window/brigdoor/southleft{
+ dir = 4;
+ icon_state = "leftsecure";
+ id = "Cell 4";
+ name = "Cell 4";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"bM" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/red/border{
dir = 4
},
-/obj/structure/stairs/south,
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/security/prison)
-"bC" = (
-/obj/machinery/cryopod{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"bD" = (
-/obj/structure/closet/secure_closet/brig,
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"bE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/flasher{
- id = "Cell 3";
- pixel_x = -28;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"bF" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 3"
- },
-/obj/effect/floor_decal/industrial/outline,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"bG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/flasher{
- id = "Cell 4";
- pixel_x = -28;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"bH" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 4"
- },
-/obj/effect/floor_decal/industrial/outline,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"bI" = (
-/obj/item/weapon/stool/padded,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"bJ" = (
-/turf/space,
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_r"
- },
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/large_escape_pod1/station{
- base_turf = /turf/simulated/mineral/floor/vacuum
- })
-"bK" = (
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"bL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"bM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
+/area/security/security_cell_hallway)
"bN" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"bO" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock{
- id_tag = "visitdoor";
- name = "Visitation Area";
- req_access = list(63)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/brig/visitation)
-"bP" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
+/obj/machinery/button/remote/blast_door{
+ id = "prison_access";
+ name = "Brig Auxillary Access";
+ pixel_x = 8;
+ pixel_y = 24;
+ req_access = list(1,2)
},
/turf/simulated/floor/tiled,
/area/security/brig/visitation)
-"bQ" = (
+"bO" = (
+/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/door/airlock/glass_security{
+ name = "Brig Auxillary Access";
+ req_access = list(2)
+ },
+/obj/machinery/door/blast/regular{
+ id = "prison_access";
+ name = "Brig Auxillary Access"
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bP" = (
+/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Brig Auxillary Access";
+ req_access = list(2)
+ },
+/obj/machinery/door/blast/regular{
+ id = "prison_access";
+ name = "Brig Auxillary Access"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"bQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door_timer/cell_3{
+ id = "Cell 1";
+ name = "Cell 1";
+ pixel_x = -32
},
/turf/simulated/floor/tiled,
-/area/security/brig/visitation)
+/area/security/security_cell_hallway)
"bR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/brig/visitation)
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
"bS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -1146,81 +1276,79 @@
/turf/simulated/wall/r_wall,
/area/engineering/shaft)
"bX" = (
-/obj/structure/window/reinforced{
- dir = 1
+/turf/space,
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
},
-/obj/effect/floor_decal/borderfloor/corner,
-/obj/effect/floor_decal/corner/red/bordercorner,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/large_escape_pod1/station{
+ base_turf = /turf/simulated/mineral/floor/vacuum
+ })
"bY" = (
-/obj/machinery/computer/cryopod,
-/turf/simulated/wall/r_wall,
-/area/security/brig)
-"bZ" = (
-/obj/machinery/door/blast/regular{
- dir = 1;
- id = "Cell 3";
- name = "Cell 3"
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"ca" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
+/turf/space,
+/obj/structure/shuttle/engine/propulsion{
dir = 8
},
-/turf/simulated/floor/plating,
-/area/security/brig)
-"cb" = (
-/obj/machinery/door/blast/regular{
- dir = 1;
- id = "Cell 4";
- name = "Cell 4"
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cc" = (
-/obj/structure/table/standard,
-/obj/structure/bedsheetbin,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"ce" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/large_escape_pod1/station{
+ base_turf = /turf/simulated/mineral/floor/vacuum
+ })
+"bZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cg" = (
-/obj/machinery/vending/hydronutrients,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ frequency = 1442;
+ icon_state = "map_injector";
+ id = "riot_inject"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"ca" = (
+/turf/space,
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/large_escape_pod1/station{
+ base_turf = /turf/simulated/mineral/floor/vacuum
+ })
+"cb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 8;
+ frequency = 1442;
+ icon_state = "map_injector";
+ id = "riot_inject"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"cf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"cg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/security/brig)
"ch" = (
@@ -1246,297 +1374,140 @@
/area/chapel/chapel_morgue)
"ck" = (
/obj/structure/ladder,
-/obj/structure/railing{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/engineering/shaft)
-"cl" = (
-/obj/structure/cable/green{
- icon_state = "32-2"
+"cp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/open,
-/area/engineering/shaft)
-"cm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"cr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"cw" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"cx" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/bed,
+/obj/machinery/light/small{
+ icon_state = "bulb1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"cy" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/steel,
+/obj/item/weapon/paper,
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"cz" = (
/obj/effect/floor_decal/borderfloor{
- dir = 8
+ dir = 4
},
/obj/effect/floor_decal/corner/red/border{
- dir = 8
+ dir = 4
},
-/obj/machinery/light{
- dir = 8
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
/turf/simulated/floor/tiled,
-/area/security/prison)
-"cn" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/obj/machinery/door/window/brigdoor/westleft,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"co" = (
-/obj/machinery/door/blast/regular{
- id = "Priacc";
- name = "Prison Main Blast Door"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cp" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cq" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cr" = (
-/obj/machinery/light,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cs" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"ct" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cu" = (
-/obj/machinery/vending/wallmed1{
- pixel_y = -32
- },
-/obj/machinery/light,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Brig Central"
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cv" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cx" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cy" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cz" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
+/area/security/security_cell_hallway)
"cA" = (
-/obj/machinery/seed_storage/garden,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/simulated/wall/r_wall,
+/area/security/recstorage)
+"cB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"cC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"cD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/bed/chair{
+ dir = 1
},
/obj/machinery/camera/network/security{
+ icon_state = "camera";
dir = 8
},
/turf/simulated/floor/tiled,
-/area/security/brig)
-"cB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- pixel_x = 5;
- pixel_y = 0
- },
-/obj/structure/curtain/open/shower/security,
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
-"cC" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
-"cD" = (
-/obj/structure/mirror{
- pixel_x = 30
- },
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
+/area/security/security_cell_hallway)
"cE" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
@@ -1588,160 +1559,219 @@
/turf/simulated/floor/plating,
/area/chapel/chapel_morgue)
"cJ" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/engineering/shaft)
"cK" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/railing{
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
dir = 1
},
-/turf/simulated/floor/plating,
-/area/engineering/shaft)
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/table/steel,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
"cL" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 1
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
},
+/obj/effect/floor_decal/corner/lightorange{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/bed,
+/obj/machinery/light/small{
+ icon_state = "bulb1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"cM" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"cN" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera/network/security{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"cM" = (
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"cN" = (
-/obj/machinery/door/blast/regular{
- dir = 1;
- id = "Cell 1";
- name = "Cell 1 Door"
- },
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/tiled/steel_dirty,
/area/security/brig)
"cO" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/structure/window/reinforced,
-/obj/structure/cable/green,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
+/turf/simulated/floor/tiled/dark,
/area/security/brig)
"cP" = (
-/obj/machinery/door/blast/regular{
- dir = 1;
- id = "Cell 2";
- name = "Cell 2 Door"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/turf/simulated/floor/tiled,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/steel_dirty,
/area/security/brig)
"cQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"cR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"cS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/window/brigdoor/southleft{
+ dir = 4;
+ icon_state = "leftsecure";
+ id = "Cell 3";
+ name = "Cell 3";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"cT" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"cU" = (
+/turf/simulated/wall,
+/area/security/recstorage)
+"cV" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
+"cX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
dir = 1
},
/obj/structure/window/reinforced,
-/obj/structure/cable/green,
-/obj/structure/window/reinforced{
- dir = 4
- },
/obj/structure/window/reinforced{
dir = 8
},
-/turf/simulated/floor/plating,
-/area/security/brig)
-"cR" = (
-/obj/structure/table/steel,
-/obj/machinery/microwave,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cT" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cU" = (
-/obj/structure/table/steel,
-/obj/item/clothing/head/greenbandana,
-/obj/item/weapon/material/minihoe,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"cV" = (
-/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- pixel_x = 5;
- pixel_y = 0
- },
-/obj/structure/curtain/open/shower/security,
-/obj/item/weapon/soap/nanotrasen,
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
-"cW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
-"cX" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
+/turf/simulated/floor,
+/area/security/brig/visitation)
"cY" = (
/turf/simulated/wall,
/area/chapel/office)
@@ -1861,210 +1891,257 @@
/turf/simulated/floor/tiled/dark,
/area/chapel/chapel_morgue)
"dh" = (
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/shaft)
-"di" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/shaft)
-"dj" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals3{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"dk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/stairs/north,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"dl" = (
-/obj/machinery/cryopod{
- dir = 2
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"dm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/flasher{
- id = "Cell 1";
- pixel_x = -28;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"dn" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 1"
- },
-/obj/effect/floor_decal/industrial/outline,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"do" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/flasher{
- id = "Cell 2";
- pixel_x = -28;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"dp" = (
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 2"
- },
-/obj/effect/floor_decal/industrial/outline,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"dq" = (
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"dr" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"ds" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"dt" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"du" = (
-/obj/machinery/door/airlock{
- name = "Brig Restroom"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
-"dv" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
-"dw" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
-"dx" = (
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
pixel_x = 28
},
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/shaft)
+"di" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"dj" = (
+/turf/simulated/wall,
+/area/security/brig/visitation)
+"dk" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"dl" = (
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/westleft{
+ req_access = list(1,2)
+ },
+/obj/machinery/door/window/brigdoor/eastright,
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"dn" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"do" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"dp" = (
+/obj/machinery/vending/hydronutrients,
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"dq" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"ds" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"dt" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"du" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ icon_state = "borderfloorcorner2_black";
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/closet,
+/obj/item/weapon/material/minihoe,
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
+"dv" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
+"dw" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"dx" = (
+/obj/effect/floor_decal/borderfloor/shifted,
+/obj/effect/floor_decal/corner/red/border/shifted,
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
"dy" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/structure/table/woodentable,
@@ -2163,120 +2240,162 @@
/turf/simulated/floor/plating,
/area/engineering/shaft)
"dL" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"dM" = (
+/obj/effect/floor_decal/borderfloor/shifted,
+/obj/effect/floor_decal/corner/red/border/shifted,
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 8
},
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/machinery/vending/cola,
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"dN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"dM" = (
-/obj/item/weapon/pen/crayon,
-/obj/machinery/alarm{
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/outlet_injector{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"dN" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"dO" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/orange,
-/obj/item/device/taperecorder{
- pixel_x = -4;
- pixel_y = 2
+ frequency = 1442;
+ icon_state = "map_injector";
+ id = "riot_inject"
},
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/steel_dirty,
/area/security/brig)
-"dP" = (
-/obj/structure/closet{
- name = "Prisoner's Locker"
+"dO" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 1
},
-/obj/item/clothing/suit/storage/apron,
+/obj/effect/floor_decal/corner/lightorange/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightorange{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 1"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"dP" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 8;
+ frequency = 1442;
+ icon_state = "map_injector";
+ id = "riot_inject"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/steel_dirty,
/area/security/brig)
"dQ" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/orange,
-/obj/item/weapon/deck/cards,
-/turf/simulated/floor/tiled/steel_dirty,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
/area/security/brig)
"dR" = (
-/obj/structure/closet{
- name = "Prisoner's Locker"
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/clothing/head/soft/orange,
-/obj/item/clothing/shoes/sandal,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"dS" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/orange,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"dT" = (
-/obj/structure/closet{
- name = "Prisoner's Locker"
- },
-/obj/item/weapon/storage/fancy/cigarettes,
-/obj/item/weapon/flame/lighter/zippo,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"dU" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/steel_dirty,
-/area/security/brig)
-"dV" = (
-/obj/structure/toilet{
- dir = 1
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
-"dW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
-"dX" = (
-/obj/structure/mopbucket,
-/obj/item/weapon/mop,
-/obj/machinery/light{
+/obj/machinery/door/blast/regular{
+ density = 0;
dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
},
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/simulated/floor/tiled/freezer,
-/area/security/brig/bathroom)
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Riot Control";
+ req_access = list(1)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/turf/simulated/floor,
+/area/security/riot_control)
+"dT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"dU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security{
+ name = "Brig Recreation Storage"
+ },
+/turf/simulated/floor/tiled,
+/area/security/recstorage)
+"dV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
"dY" = (
/obj/machinery/light{
dir = 8
@@ -2403,142 +2522,54 @@
/turf/simulated/floor/plating,
/area/engineering/shaft)
"eo" = (
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/security/prison)
+/area/security/brig/visitation)
"ep" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/glass_security{
- name = "Solitary Confinement 1";
- req_access = list(2)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"eq" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/window/brigdoor/southleft{
- id = "Cell 1";
- name = "Cell 1";
- req_access = list(2)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"er" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"eq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
/area/security/brig)
"es" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/window/brigdoor/southleft{
- id = "Cell 2";
- name = "Cell 2";
- req_access = list(2)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/brig)
-"et" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/brig)
-"eu" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/steel_dirty,
/area/security/brig)
"ev" = (
/obj/structure/disposalpipe/segment{
@@ -2548,49 +2579,34 @@
/turf/simulated/floor/carpet/bcarpet,
/area/tether/station/public_meeting_room)
"ew" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/cable/green{
- icon_state = "0-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/door/blast/regular{
density = 0;
- dir = 4;
+ dir = 1;
icon_state = "pdoor0";
- id = "security_lockdown";
+ id = "brig_lockdown";
name = "Security Blast Doors";
opacity = 0
},
-/turf/simulated/floor/plating,
-/area/security/brig)
-"ex" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/window/brigdoor/southleft{
dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
+ id = "Cell 2";
+ name = "Cell 2";
+ req_access = list(2)
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/tiled/dark,
/area/security/brig)
"ey" = (
/obj/structure/table/woodentable,
@@ -2697,409 +2713,82 @@
/obj/structure/lattice,
/turf/space,
/area/space)
-"eN" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"eO" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"eP" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
"eQ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"eR" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/security/prison)
+/area/security/brig)
"eS" = (
-/obj/effect/floor_decal/borderfloor{
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
dir = 1
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door_timer/cell_3{
- id = "Cell 1";
- name = "Cell 1";
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"eT" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/button/remote/blast_door{
- id = "Cell 1";
- name = "Cell 1 Door";
- pixel_x = 1;
- pixel_y = 28;
- req_access = list(2)
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"eU" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door_timer/cell_3{
- id = "Cell 2";
- name = "Cell 2";
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"eV" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/button/remote/blast_door{
- id = "Cell 2";
- name = "Cell 2 Door";
- pixel_x = 1;
- pixel_y = 28;
- req_access = list(2)
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"eW" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"eX" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"eY" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"eZ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"fa" = (
-/obj/structure/stairs{
- icon_state = "";
+ icon_state = "tube1";
dir = 8
},
-/obj/structure/window/reinforced,
+/obj/structure/sign/deathsposal{
+ pixel_x = -32
+ },
/turf/simulated/floor/tiled,
-/area/security/prison)
-"fb" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/tiled,
-/area/security/prison)
+/area/security/brig)
+"eV" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
"fc" = (
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals9{
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"fd" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"fe" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/security{
- name = "Evidence Storage";
- req_access = list(1)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/evidence_storage)
-"ff" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
-"fg" = (
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
-"fh" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"fd" = (
+/turf/simulated/wall/r_wall,
+/area/security/interrogation)
+"fi" = (
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
pixel_y = 0
},
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
-"fi" = (
-/turf/simulated/wall/r_wall,
-/area/security/evidence_storage)
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"fj" = (
/obj/structure/bed/chair{
dir = 1
@@ -3204,223 +2893,65 @@
},
/turf/simulated/floor/bluegrid,
/area/ai_upload)
-"fw" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/shaft)
"fx" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
},
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
/area/engineering/shaft)
-"fy" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/engineering/shaft)
-"fz" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"fA" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -32
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
"fB" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
+/obj/structure/stairs/south,
/turf/simulated/floor/tiled,
-/area/security/prison)
-"fC" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
+/area/security/brig/visitation)
"fD" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"fE" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"fF" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"fG" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/cryopod{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"fH" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
/obj/machinery/camera/network/security{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "camera";
dir = 4
},
/turf/simulated/floor/tiled,
-/area/security/prison)
+/area/security/brig)
"fI" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"fJ" = (
/obj/effect/floor_decal/borderfloor{
- dir = 6
+ dir = 4
},
/obj/effect/floor_decal/corner/red/border{
- dir = 6
+ dir = 4
},
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/red/bordercorner2,
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"fK" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
-"fL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
-/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
-"fM" = (
-/obj/structure/closet{
- name = "Evidence Closet"
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"fK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
+"fL" = (
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
dir = 8
},
/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
+/area/security/interrogation)
"fN" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/rust,
+/obj/random/trash_pile,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"fO" = (
@@ -3519,49 +3050,67 @@
/turf/simulated/floor/plating,
/area/engineering/locker_room)
"fZ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/security/prison)
-"ga" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/glass_security{
- name = "Security Processing";
- req_access = list(1)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/prison)
-"gb" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/camera/network/security{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
-"gc" = (
-/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
-"gd" = (
-/obj/structure/closet{
- name = "Evidence Closet"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/light{
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/window/brigdoor/southleft{
dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+ id = "Cell 1";
+ name = "Cell 1";
+ req_access = list(2)
},
/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
+/area/security/brig)
+"ga" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"gb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/table/steel,
+/obj/item/device/flashlight/lamp,
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
+"gc" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
"ge" = (
/obj/effect/floor_decal/chapel{
dir = 1
@@ -3771,108 +3320,79 @@
/turf/simulated/open,
/area/engineering/locker_room)
"gx" = (
-/turf/simulated/mineral/vacuum,
-/area/maintenance/station/eng_upper)
-"gy" = (
-/turf/simulated/wall/r_wall,
-/area/security/security_processing)
-"gz" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"gA" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"gB" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"gC" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"gD" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"gE" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
-"gF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
-"gG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "brigouter";
+ name = "Brig";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"gy" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"gB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Brig Cells";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"gC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ name = "Brig Cells";
+ req_access = list(1)
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"gE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
+"gG" = (
/obj/structure/lattice,
/obj/structure/cable/pink{
icon_state = "32-4"
@@ -4032,74 +3552,80 @@
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
"gV" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/table/steel,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
/obj/effect/floor_decal/borderfloor{
- dir = 8
+ dir = 1;
+ pixel_y = 0
},
/obj/effect/floor_decal/corner/red/border{
- dir = 8
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/tiled,
-/area/security/security_processing)
+/area/security/security_cell_hallway)
"gW" = (
-/obj/structure/table/steel,
-/obj/item/device/flashlight/lamp,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"gX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"gY" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"gZ" = (
-/obj/structure/bed/chair{
- dir = 8
- },
/obj/effect/floor_decal/borderfloor{
- dir = 4
+ dir = 1;
+ pixel_y = 0
},
/obj/effect/floor_decal/corner/red/border{
- dir = 4
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"ha" = (
+/area/security/security_cell_hallway)
+"gX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/security/evidence_storage)
-"hb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"gY" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"ha" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 10;
+ icon_state = "fwindow";
+ id = "chapel"
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 4;
+ icon_state = "twindow"
+ },
/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
+/area/security/interrogation)
"hc" = (
/obj/structure/cable/pink{
icon_state = "1-2"
@@ -4248,45 +3774,99 @@
/turf/simulated/wall,
/area/maintenance/station/eng_upper)
"hs" = (
-/obj/machinery/computer/secure_data{
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/railing,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/security/security_processing)
+/area/security/security_cell_hallway)
"ht" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/structure/railing,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"hu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"hv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"hw" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/bed/chair{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"hu" = (
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"hv" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"hw" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/security{
- name = "Evidence Storage";
- req_access = list(1)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/evidence_storage)
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
"hx" = (
/obj/effect/floor_decal/chapel{
dir = 1
@@ -4454,230 +4034,90 @@
/turf/simulated/open,
/area/engineering/locker_room)
"hQ" = (
-/obj/effect/floor_decal/corner/yellow{
- dir = 6
- },
-/obj/effect/floor_decal/corner/yellow{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/foyer_mezzenine)
-"hR" = (
-/obj/effect/floor_decal/corner/yellow{
- dir = 6
- },
-/obj/effect/floor_decal/corner/yellow{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/vending/snack,
-/turf/simulated/floor/tiled,
-/area/engineering/foyer_mezzenine)
-"hS" = (
-/obj/effect/floor_decal/corner/yellow{
- dir = 6
- },
-/obj/effect/floor_decal/corner/yellow{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/vending/cola,
-/turf/simulated/floor/tiled,
-/area/engineering/foyer_mezzenine)
-"hT" = (
-/obj/effect/floor_decal/corner/yellow{
- dir = 6
- },
-/obj/effect/floor_decal/corner/yellow{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/tiled,
+/turf/simulated/wall/r_wall,
/area/engineering/foyer_mezzenine)
"hU" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
+/obj/structure/stairs/west,
/turf/simulated/floor/tiled,
-/area/security/security_processing)
+/area/security/security_cell_hallway)
"hV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/tiled,
-/area/security/security_processing)
+/area/security/security_cell_hallway)
"hW" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/security/security_processing)
+/area/security/security_cell_hallway)
"hX" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner{
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"hY" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"hZ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"ia" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"ib" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/evidence,
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"ic" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/alarm{
+/obj/machinery/door/airlock/security{
+ name = "Observation"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
+"hY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
+"hZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
+"ia" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/power/apc{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+ name = "east bump";
+ pixel_x = 28
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/station/sec_lower)
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
"id" = (
/obj/effect/floor_decal/chapel{
dir = 8
@@ -4869,7 +4309,8 @@
/obj/effect/floor_decal/corner/yellow/bordercorner2{
dir = 10
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled,
/area/engineering/foyer_mezzenine)
"iv" = (
@@ -4883,6 +4324,7 @@
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/vending/snack,
/turf/simulated/floor/tiled,
/area/engineering/foyer_mezzenine)
"iw" = (
@@ -4894,154 +4336,46 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer_mezzenine)
-"ix" = (
-/obj/effect/floor_decal/rust,
-/obj/random/trash_pile,
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
-"iy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet,
-/obj/random/maintenance/security,
-/obj/random/contraband,
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
"iz" = (
-/obj/effect/floor_decal/rust,
-/obj/random/junk,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/random/maintenance/engineering,
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
-"iA" = (
-/obj/structure/table/steel,
-/obj/item/device/taperecorder,
-/obj/effect/floor_decal/borderfloor{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
-/obj/effect/floor_decal/corner/red/border{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"iB" = (
-/obj/structure/table/steel,
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/folder/red{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/weapon/folder/red,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"iC" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"iD" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"iE" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"iF" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloor,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"iG" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"iH" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/security/security_processing)
-"iI" = (
-/obj/structure/table/steel,
-/obj/item/device/camera,
-/obj/effect/floor_decal/borderfloor{
- dir = 6
+/obj/machinery/alarm{
+ pixel_y = 22
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/security/riot_control)
+"iC" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/security/security_processing)
+/area/security/security_cell_hallway)
+"iD" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"iJ" = (
/obj/item/weapon/stool/padded,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -5163,7 +4497,7 @@
/area/ai_upload)
"iY" = (
/turf/simulated/wall,
-/area/lawoffice)
+/area/vacant/vacant_office)
"iZ" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -5322,7 +4656,6 @@
/area/engineering/foyer_mezzenine)
"jh" = (
/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/blast/regular{
density = 0;
dir = 1;
@@ -5331,61 +4664,26 @@
name = "Engineering Lockdown";
opacity = 0
},
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Riot Control";
+ req_one_access = list(1,10,24)
+ },
/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
-"ji" = (
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
+/area/security/riot_control)
"jj" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
-"jk" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/multi_tile/metal/mait{
- name = "Security Processing";
- req_access = list(1,12);
- req_one_access = newlist()
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/security_processing)
"jl" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
},
-/turf/simulated/floor/plating,
-/area/security/security_processing)
-"jm" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"jn" = (
@@ -5437,94 +4735,15 @@
/turf/simulated/floor/tiled/techfloor,
/area/ai_upload)
"js" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/storage/briefcase{
- pixel_x = -2;
- pixel_y = -5
- },
-/obj/item/weapon/storage/briefcase{
- pixel_x = 3;
- pixel_y = 0
- },
-/obj/machinery/newscaster{
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"jt" = (
-/obj/structure/table/reinforced,
-/obj/machinery/computer/skills,
-/obj/machinery/light{
- dir = 1
- },
/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"ju" = (
-/obj/structure/closet/lawcloset,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"jv" = (
-/obj/item/device/taperecorder{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/device/camera{
- pixel_x = 3;
- pixel_y = -4
- },
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/weapon/storage/secure/briefcase,
-/obj/structure/closet,
-/obj/item/weapon/storage/secure/briefcase,
-/obj/item/device/taperecorder{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/device/camera{
- pixel_x = 3;
- pixel_y = -4
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"jw" = (
-/obj/structure/table/reinforced,
-/obj/machinery/photocopier/faxmachine{
- department = "Internal Affairs"
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/area/vacant/vacant_office)
"jx" = (
-/obj/machinery/photocopier,
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"jy" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"jz" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/clipboard,
-/obj/machinery/newscaster{
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"jA" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -5634,100 +4853,68 @@
/obj/effect/floor_decal/corner/yellow/bordercorner2,
/turf/simulated/floor/tiled,
/area/engineering/foyer_mezzenine)
-"jK" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/random/junk,
-/obj/random/junk,
-/obj/random/maintenance/security,
-/turf/simulated/floor/plating,
-/area/maintenance/station/eng_upper)
"jL" = (
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
"jM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 10
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
"jN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
"jO" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
"jP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/station/sec_lower)
-"jQ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/sec_lower)
-"jR" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/station/sec_lower)
-"jS" = (
+"jQ" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -5737,32 +4924,29 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/station/sec_lower)
-"jT" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/plating,
-/area/maintenance/station/sec_lower)
-"jU" = (
+"jR" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/station/sec_lower)
+"jS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
/area/maintenance/station/sec_lower)
"jV" = (
/obj/effect/floor_decal/chapel{
@@ -5806,22 +4990,13 @@
/turf/simulated/wall/r_wall,
/area/ai_cyborg_station)
"kc" = (
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"kd" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Internal Affairs Agent"
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"ke" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/obj/random/junk,
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"kf" = (
/turf/simulated/wall,
/area/engineering/foyer_mezzenine)
@@ -5863,6 +5038,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance/common,
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
"kj" = (
@@ -5989,143 +5165,33 @@
/obj/machinery/computer/aifixer,
/turf/simulated/floor/tiled/techfloor,
/area/ai_cyborg_station)
-"ky" = (
-/obj/machinery/camera/network/civilian{
- dir = 5
- },
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
"kz" = (
-/obj/structure/table/reinforced,
-/obj/item/device/flashlight/lamp,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"kA" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/pen/blue{
- pixel_x = -5;
- pixel_y = -1
- },
-/obj/item/weapon/pen/red{
- pixel_x = -1;
- pixel_y = 3
- },
-/obj/item/weapon/material/ashtray/plastic{
- pixel_x = 4;
- pixel_y = 6
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"kB" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder{
- pixel_x = -4
- },
-/obj/item/weapon/folder/red{
- pixel_y = 3
- },
-/obj/item/weapon/folder/blue{
- pixel_x = 5
- },
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/stamp/internalaffairs,
-/obj/item/weapon/stamp/denied{
- pixel_x = 4;
- pixel_y = -2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/command_guide,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/obj/structure/table,
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"kC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/engineering,
+/obj/random/tech_supply,
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"kD" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"kE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/cap/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"kF" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/pen/blue{
- pixel_x = -5;
- pixel_y = -1
- },
-/obj/item/weapon/pen/red{
- pixel_x = -1;
- pixel_y = 3
- },
-/obj/item/weapon/material/ashtray/plastic{
- pixel_x = 4;
- pixel_y = 6
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"kG" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/table/reinforced,
-/obj/item/weapon/folder{
- pixel_x = -4
- },
-/obj/item/weapon/folder/red{
- pixel_y = 3
- },
-/obj/item/weapon/folder/blue{
- pixel_x = 5
- },
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/stamp/internalaffairs,
-/obj/item/weapon/stamp/denied{
- pixel_x = 4;
- pixel_y = -2
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/command_guide,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"kH" = (
-/obj/machinery/camera/network/civilian{
- dir = 9
- },
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"kI" = (
/turf/space/cracked_asteroid,
/area/mine/explored/upper_level)
@@ -6198,9 +5264,6 @@
/obj/machinery/vending/assist,
/turf/simulated/floor,
/area/storage/tech)
-"kR" = (
-/turf/simulated/mineral/vacuum,
-/area/engineering/foyer_mezzenine)
"kS" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -6241,6 +5304,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/rust,
+/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
"kV" = (
@@ -6248,6 +5312,9 @@
pixel_y = 22
},
/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/structure/railing{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
"kW" = (
@@ -6496,17 +5563,10 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ai_cyborg_station)
-"lr" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
"ls" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"lt" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
@@ -6619,14 +5679,9 @@
/obj/structure/disposalpipe/segment,
/obj/structure/railing,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/apc;
- dir = 8;
- name = "west bump";
- pixel_x = -28
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/maintenance/station/eng_upper)
@@ -6798,64 +5853,20 @@
/obj/machinery/recharge_station,
/turf/simulated/floor/tiled/techfloor,
/area/ai_cyborg_station)
-"lW" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"lX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"lY" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"lZ" = (
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = -26
- },
-/obj/machinery/button/windowtint{
- id = "lawyer_blast";
- pixel_x = 0;
- pixel_y = -36
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
"ma" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/area/vacant/vacant_office)
"mb" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
-"mc" = (
-/obj/machinery/papershredder,
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice)
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"md" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
@@ -7117,7 +6128,7 @@
"my" = (
/obj/machinery/status_display,
/turf/simulated/wall,
-/area/lawoffice)
+/area/hallway/station/starboard)
"mz" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
@@ -7128,7 +6139,7 @@
id = "lawyer_blast"
},
/turf/simulated/floor/plating,
-/area/lawoffice)
+/area/hallway/station/starboard)
"mA" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
@@ -7138,12 +6149,8 @@
id = "lawyer_blast"
},
/turf/simulated/floor/plating,
-/area/lawoffice)
+/area/hallway/station/starboard)
"mB" = (
-/obj/machinery/door/airlock{
- name = "Internal Affairs";
- req_access = list(38)
- },
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 1;
@@ -7152,8 +6159,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled/steel_grid,
-/area/lawoffice)
+/area/hallway/station/starboard)
"mC" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
@@ -16854,6 +15862,9 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/medbreak)
+"BV" = (
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
"BW" = (
/turf/simulated/shuttle/wall,
/area/shuttle/large_escape_pod1/station{
@@ -17520,6 +16531,20 @@
/obj/item/weapon/paper,
/turf/simulated/floor,
/area/chapel/office)
+"Dq" = (
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"Ds" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/structure/closet/wardrobe/orange,
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
"Dy" = (
/obj/structure/table/rack{
dir = 8;
@@ -17537,6 +16562,26 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"DF" = (
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"DG" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/engineering/shaft)
+"DK" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"DN" = (
/obj/structure/table/rack{
dir = 8;
@@ -17561,23 +16606,77 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Em" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"En" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
+"Er" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 5
+ },
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer_mezzenine)
+"Et" = (
+/obj/structure/railing,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
+"Eu" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ icon_state = "intact";
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/junction/yjunction,
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"Ev" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"Ew" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/alarm{
+ pixel_y = 22
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
"Ey" = (
/turf/simulated/floor/reinforced/airless,
/area/space)
@@ -17602,6 +16701,7 @@
/obj/effect/floor_decal/techfloor{
dir = 1
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"EJ" = (
@@ -17620,6 +16720,29 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
+"EZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"Fb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled,
+/area/security/brig)
"Fe" = (
/obj/structure/table/glass,
/obj/item/weapon/surgical/scalpel,
@@ -17635,20 +16758,55 @@
},
/turf/simulated/floor/airless,
/area/maintenance/station/sec_lower)
-"Fo" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"Fj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 10;
+ icon_state = "fwindow";
+ id = "chapel"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/prison)
+/obj/structure/window/reinforced/tinted,
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 8;
+ icon_state = "twindow"
+ },
+/turf/simulated/floor,
+/area/security/interrogation)
+"Fq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig/bathroom)
"Fr" = (
/obj/effect/decal/cleanable/blood,
/obj/item/weapon/reagent_containers/blood,
/turf/simulated/floor,
/area/chapel/office)
+"Fs" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"Ft" = (
/obj/structure/closet,
/obj/item/clothing/accessory/poncho/roles/medical,
@@ -17665,6 +16823,22 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Fw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
"FA" = (
/obj/structure/railing{
dir = 8
@@ -17692,10 +16866,52 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/virology)
-"FJ" = (
-/obj/structure/catwalk,
-/turf/simulated/floor/airless,
-/area/maintenance/station/sec_lower)
+"FI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"FO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"FR" = (
/obj/effect/floor_decal/rust,
/obj/random/junk,
@@ -17713,6 +16929,10 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/station/sec_lower)
+"Gd" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"Gf" = (
/obj/machinery/power/apc{
dir = 4;
@@ -17728,6 +16948,45 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/station/public_meeting_room)
+"Gl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "briginner";
+ name = "Brig";
+ req_access = list(2)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"Go" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/shaft)
+"Gw" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"GG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
"GV" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
@@ -17752,6 +17011,16 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Hc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"Hk" = (
/obj/random/junk,
/turf/simulated/floor,
@@ -17762,6 +17031,17 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/tether/station/public_meeting_room)
+"Hx" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
"HA" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
@@ -17774,12 +17054,83 @@
/obj/machinery/vending/fitness,
/turf/simulated/floor/tiled/dark,
/area/tether/station/public_meeting_room)
+"HH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"HK" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"HP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"Ik" = (
/obj/machinery/light/small{
dir = 8
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Ix" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"Iz" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"IB" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -17797,10 +17148,6 @@
},
/turf/simulated/floor/carpet/bcarpet,
/area/tether/station/public_meeting_room)
-"IK" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/wall/r_wall,
-/area/security/prison)
"IO" = (
/obj/structure/disposaloutlet{
dir = 1
@@ -17808,11 +17155,58 @@
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/airless,
/area/space)
+"IX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
+"IZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
+"Jc" = (
+/obj/machinery/seed_storage/garden,
+/turf/simulated/floor/tiled,
+/area/security/brig)
"Jh" = (
/obj/effect/floor_decal/rust,
/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Jl" = (
+/obj/structure/cable/green{
+ icon_state = "32-2"
+ },
+/obj/structure/lattice,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing,
+/turf/simulated/open,
+/area/engineering/shaft)
+"Jp" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/shaft)
"Jq" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -17831,6 +17225,31 @@
/obj/structure/girder,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"JD" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"JH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -17840,6 +17259,15 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/maintenance/station/sec_lower)
+"JI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "briginner";
+ name = "Brig";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
"JK" = (
/obj/structure/cable{
d1 = 1;
@@ -17873,12 +17301,41 @@
"Ko" = (
/turf/simulated/mineral/vacuum,
/area/space)
+"Kv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/beach_ball/holoball,
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
"KG" = (
/turf/simulated/mineral/floor/cave,
/area/maintenance/station/sec_lower)
"KI" = (
/turf/simulated/wall,
/area/tether/station/public_meeting_room)
+"KJ" = (
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/apc;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/maintenance/security,
+/turf/simulated/floor/plating,
+/area/maintenance/station/eng_upper)
"KP" = (
/obj/machinery/photocopier,
/obj/item/device/radio/intercom{
@@ -17895,6 +17352,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/station/public_meeting_room)
+"KQ" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"KU" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/gloves{
@@ -17922,6 +17394,26 @@
/obj/structure/ladder/up,
/turf/simulated/floor,
/area/maintenance/evahallway)
+"Ld" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
"Lf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/catwalk,
@@ -17943,12 +17435,51 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Lx" = (
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/simulated/floor/tiled,
+/area/security/brig)
"Ly" = (
/obj/effect/floor_decal/rust,
/obj/structure/closet/crate,
/obj/random/maintenance/engineering,
/turf/simulated/floor/airless,
/area/maintenance/station/sec_lower)
+"LB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
+"LD" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"LL" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -17981,10 +17512,18 @@
/obj/item/weapon/pen/red,
/turf/simulated/floor/carpet/bcarpet,
/area/tether/station/public_meeting_room)
+"LW" = (
+/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/airless,
+/area/maintenance/station/sec_lower)
"Mn" = (
/obj/structure/table/steel,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Mp" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
"Mq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -18002,6 +17541,7 @@
/obj/effect/floor_decal/techfloor{
dir = 10
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/airless,
/area/maintenance/station/sec_lower)
"Mw" = (
@@ -18013,6 +17553,11 @@
/obj/random/junk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"MC" = (
+/obj/structure/railing,
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
"MK" = (
/obj/structure/table/rack{
dir = 8;
@@ -18032,6 +17577,29 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"MT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
+"MX" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"Na" = (
/obj/structure/table/glass,
/obj/item/weapon/book/manual/medical_diagnostics_manual,
@@ -18041,6 +17609,68 @@
/obj/structure/table/reinforced,
/turf/simulated/floor/tiled/white,
/area/maintenance/station/sec_lower)
+"Nc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/green{
+ icon_state = "intact";
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"Ng" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"Nh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/vacant/vacant_office)
+"Nj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/eng_upper)
"Nm" = (
/obj/structure/bed/chair{
dir = 8
@@ -18073,6 +17703,11 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"NJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/tool,
+/turf/simulated/floor,
+/area/vacant/vacant_office)
"NM" = (
/obj/structure/lattice,
/turf/simulated/mineral/floor/cave,
@@ -18112,6 +17747,37 @@
},
/turf/simulated/floor/airless,
/area/maintenance/station/sec_lower)
+"Oc" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"Of" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 10;
+ icon_state = "fwindow";
+ id = "chapel"
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/security/interrogation)
"Oj" = (
/obj/machinery/alarm{
dir = 8;
@@ -18122,6 +17788,17 @@
/obj/random/maintenance/engineering,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Op" = (
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "sec_riot_control"
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
"Or" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/catwalk,
@@ -18131,6 +17808,7 @@
/obj/structure/table/glass,
/obj/item/clothing/accessory/stethoscope,
/obj/item/device/healthanalyzer,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/white,
/area/maintenance/station/sec_lower)
"OA" = (
@@ -18141,6 +17819,17 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"OI" = (
+/obj/structure/closet{
+ name = "Prisoner's Locker"
+ },
+/obj/item/weapon/flame/lighter/zippo,
+/obj/item/clothing/head/greenbandana,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
"OJ" = (
/turf/simulated/wall,
/area/maintenance/evahallway)
@@ -18157,6 +17846,36 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Pd" = (
+/obj/effect/floor_decal/rust,
+/obj/random/junk,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/engineering,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/eng_upper)
+"Ph" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"Pj" = (
/obj/structure/table/wooden_reinforced,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -18173,21 +17892,100 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/evahallway)
+"Pm" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled,
+/area/security/brig)
"Py" = (
/obj/structure/bed/chair{
dir = 4
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"PA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"PC" = (
/obj/item/weapon/reagent_containers/blood,
/turf/simulated/floor,
/area/chapel/office)
+"PE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"PF" = (
/turf/simulated/wall{
can_open = 1
},
/area/maintenance/station/sec_lower)
+"PJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"PM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"PP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
"PR" = (
/obj/structure/bed/chair/office/dark{
dir = 8
@@ -18213,16 +18011,38 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"PW" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/shaft)
"PX" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Qe" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"Qk" = (
/obj/effect/floor_decal/rust,
/obj/random/trash,
/obj/effect/floor_decal/techfloor{
dir = 1
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"Ql" = (
@@ -18230,9 +18050,41 @@
/obj/structure/table/steel,
/turf/simulated/floor/airless,
/area/maintenance/station/sec_lower)
+"Qn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"Qs" = (
/turf/simulated/mineral/vacuum,
/area/maintenance/station/sec_lower)
+"Qu" = (
+/obj/structure/catwalk,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
+"Qv" = (
+/obj/structure/closet{
+ name = "Prisoner's Locker"
+ },
+/obj/item/clothing/head/soft/orange,
+/obj/item/clothing/suit/storage/apron,
+/obj/item/clothing/shoes/sandal,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"Qy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
"Qz" = (
/obj/item/weapon/paper,
/obj/effect/rune,
@@ -18240,6 +18092,24 @@
/obj/random/maintenance/engineering,
/turf/simulated/floor,
/area/chapel/office)
+"QD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/recstorage)
"QF" = (
/obj/structure/cable{
d1 = 4;
@@ -18263,6 +18133,20 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"QH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"QN" = (
/obj/structure/closet,
/obj/item/clothing/shoes/boots/winter/medical,
@@ -18279,6 +18163,16 @@
dir = 4
},
/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
+"QR" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"QS" = (
@@ -18294,6 +18188,7 @@
/obj/effect/floor_decal/rust,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"QZ" = (
@@ -18304,11 +18199,14 @@
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"Rb" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"Rd" = (
@@ -18333,6 +18231,22 @@
/obj/structure/lattice,
/turf/simulated/mineral/floor/cave,
/area/maintenance/station/sec_lower)
+"Rg" = (
+/obj/effect/floor_decal/corner/white/border{
+ icon_state = "bordercolor";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
+"Rl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/frame/apc,
+/turf/simulated/floor,
+/area/vacant/vacant_office)
+"Rq" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall/r_wall,
+/area/security/brig)
"Rr" = (
/obj/machinery/firealarm{
dir = 4;
@@ -18369,6 +18283,16 @@
/obj/random/maintenance/engineering,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"RE" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
"RF" = (
/obj/structure/closet/emcloset,
/obj/effect/floor_decal/techfloor{
@@ -18414,6 +18338,13 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"RW" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"RY" = (
/obj/random/junk,
/obj/random/junk,
@@ -18442,6 +18373,15 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Sl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"Sp" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -18466,6 +18406,15 @@
},
/turf/simulated/floor,
/area/maintenance/evahallway)
+"Sy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
"SI" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
@@ -18475,6 +18424,7 @@
/obj/effect/floor_decal/techfloor{
dir = 8
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"SK" = (
@@ -18486,6 +18436,12 @@
/obj/random/maintenance/clean,
/turf/simulated/floor,
/area/maintenance/evahallway)
+"ST" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"SV" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -18508,6 +18464,10 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/station/public_meeting_room)
+"SY" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/station/sec_lower)
"Ta" = (
/obj/structure/table/steel,
/obj/random/action_figure,
@@ -18519,6 +18479,28 @@
/obj/random/maintenance/engineering,
/turf/simulated/floor,
/area/maintenance/evahallway)
+"Tj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet,
+/obj/random/maintenance/security,
+/obj/random/contraband,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/sec_lower)
+"Tk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
"Tl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -18560,23 +18542,6 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
-"TA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/security/brig)
"TB" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/maintenance/common,
@@ -18599,17 +18564,44 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"TY" = (
+/turf/simulated/wall/r_wall,
+/area/security/riot_control)
+"Uf" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"Ug" = (
/obj/structure/closet/crate,
/obj/random/junk,
/obj/random/junk,
/turf/simulated/mineral/floor/cave,
/area/maintenance/station/sec_lower)
+"Ui" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/blast/regular{
+ dir = 1;
+ id = "Cell 1";
+ name = "Cell 1"
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
"Uk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"Uo" = (
@@ -18626,6 +18618,16 @@
},
/turf/simulated/floor/carpet/bcarpet,
/area/tether/station/public_meeting_room)
+"Us" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "sec_riot_control"
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
"Uu" = (
/obj/structure/cable/green{
d1 = 4;
@@ -18662,6 +18664,13 @@
},
/turf/simulated/floor,
/area/maintenance/evahallway)
+"UE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
"UH" = (
/obj/effect/floor_decal/techfloor{
dir = 8
@@ -18682,6 +18691,25 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"UR" = (
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
+"UT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
"UU" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -18701,6 +18729,17 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/port)
+"UV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"UX" = (
/obj/structure/catwalk,
/turf/simulated/floor,
@@ -18713,6 +18752,53 @@
/obj/structure/lattice,
/turf/simulated/mineral/floor/vacuum,
/area/mine/explored/upper_level)
+"Vj" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
+"Vm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"Vu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access = list(2)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
"Vw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -18738,6 +18824,42 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/public_meeting_room)
+"VB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "brigouter";
+ name = "Brig";
+ req_access = list(2)
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"VF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/blast/regular{
+ dir = 1;
+ id = "Cell 3";
+ name = "Cell 3"
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
"VH" = (
/obj/structure/table/steel,
/obj/item/device/radio{
@@ -18750,6 +18872,7 @@
/obj/effect/floor_decal/techfloor{
dir = 1
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"VK" = (
@@ -18768,6 +18891,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/station/public_meeting_room)
+"VU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
"Wi" = (
/obj/machinery/alarm{
frequency = 1441;
@@ -18785,6 +18923,17 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Wk" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
"Ww" = (
/obj/effect/floor_decal/rust,
/obj/structure/closet,
@@ -18834,6 +18983,29 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/evahallway)
+"WJ" = (
+/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
+"WL" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/interrogation)
+"WS" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/engineering/shaft)
"Xc" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/syringes{
@@ -18852,6 +19024,13 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Xp" = (
+/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{
+ icon_state = "n2o_map";
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/security/riot_control)
"Xq" = (
/obj/structure/cable{
d1 = 4;
@@ -18864,6 +19043,13 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/station/port)
+"Xs" = (
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/monotile,
+/area/security/brig)
"Xw" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -18885,6 +19071,29 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/starboard)
+"Xx" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/computer/cryopod{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
"XA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -18892,6 +19101,38 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"XC" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"XG" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_cell_hallway)
+"XH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"XI" = (
/obj/random/junk,
/turf/simulated/floor,
@@ -18912,6 +19153,49 @@
/obj/item/weapon/paper_bin,
/turf/simulated/floor,
/area/chapel/office)
+"XR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
+"XT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/blast/regular{
+ dir = 1;
+ id = "Cell 4";
+ name = "Cell 4"
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
+"XX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/brig/visitation)
"Yc" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -18927,6 +19211,11 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Ye" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/security/brig)
"Yf" = (
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -18953,6 +19242,29 @@
/obj/structure/catwalk,
/turf/simulated/floor/airless,
/area/maintenance/station/sec_lower)
+"Yq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Riot Control";
+ req_one_access = list(1,10,24)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/riot_control)
"Yw" = (
/turf/simulated/floor/airless,
/area/mine/explored/upper_level)
@@ -18963,6 +19275,45 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"YE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"YH" = (
+/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/vacant/vacant_office)
+"YK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/green,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/brig)
"YM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -18970,6 +19321,25 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"YN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/vending/cola,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer_mezzenine)
+"YU" = (
+/obj/effect/floor_decal/rust,
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/station/sec_lower)
"YV" = (
/obj/effect/decal/cleanable/blood,
/obj/item/weapon/paperplane,
@@ -18980,6 +19350,29 @@
/obj/random/trash,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Za" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/soap/nanotrasen,
+/turf/simulated/floor/tiled/freezer,
+/area/security/brig/bathroom)
+"Zb" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_lower)
"Zl" = (
/obj/structure/closet/crate,
/turf/simulated/floor,
@@ -18991,6 +19384,31 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"Zu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
"Zx" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -19000,11 +19418,20 @@
},
/turf/simulated/floor/plating,
/area/maintenance/evahallway)
+"Zy" = (
+/turf/simulated/floor/plating,
+/area/engineering/shaft)
"ZE" = (
/obj/structure/table/steel,
/obj/random/maintenance/engineering,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"ZH" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
"ZJ" = (
/obj/structure/table/steel,
/obj/item/weapon/storage/briefcase/inflatable,
@@ -19023,6 +19450,23 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
+"ZR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/blast/regular{
+ dir = 1;
+ id = "Cell 2";
+ name = "Cell 2"
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/brig)
"ZW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -19031,6 +19475,7 @@
dir = 5
},
/obj/effect/floor_decal/techfloor,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/sec_lower)
"ZX" = (
@@ -23073,12 +23518,12 @@ aa
aa
aa
eM
-eM
at
FZ
FZ
+FZ
at
-at
+FZ
FZ
FZ
at
@@ -23215,12 +23660,12 @@ eM
eM
eM
eM
-eM
RB
Ff
Nm
UH
NY
+UH
Nm
Ms
RR
@@ -23354,15 +23799,15 @@ at
at
at
at
-at
FZ
FZ
-at
+FZ
at
Ob
-FJ
+LW
Yh
-Yd
+IX
+IX
Or
ZW
at
@@ -23481,30 +23926,30 @@ Qs
at
Hb
UJ
-Tm
-Tm
-Zr
-Tm
+RW
+RW
+Iz
+RW
Tm
Tm
NZ
Zr
Zr
Tm
-Tm
-Tm
+RW
+RW
SJ
Zr
Zr
Tm
-Tm
-Tm
-Tm
+RW
+RW
RF
NA
Jh
at
at
+at
XM
Ny
Zr
@@ -23623,33 +24068,33 @@ Ug
at
DR
Ty
-Or
-Yd
+PA
+IX
Yd
Yd
Or
XM
-XM
-Lf
+WJ
+ST
+IX
Yd
-Yd
-Lf
-Lf
-Lf
+ST
+ST
+ST
Lf
QW
Jh
-Yd
-Yd
+IX
Yd
Yd
Yd
Wj
at
+Qs
at
-XM
+WJ
Uk
-Yd
+IX
Yd
Or
XM
@@ -23787,7 +24232,7 @@ at
at
at
at
-at
+Qs
at
JH
JH
@@ -23910,24 +24355,24 @@ ZL
at
Na
MN
-MN
-RS
+SY
+bf
WE
KU
at
-RS
+bf
at
aP
kI
aP
aP
at
-ZE
RS
RS
RS
+bf
+bf
RS
-Mn
at
ac
kI
@@ -24048,28 +24493,28 @@ RS
RS
at
TW
-OY
+UV
at
Os
-MN
+SY
Tq
-RS
+bf
MN
Xc
at
-RS
+bf
at
ac
aP
aP
aP
at
+QR
+bf
+RS
+bf
+bf
Mn
-RS
-RS
-RS
-RS
-QS
at
aP
aP
@@ -24190,7 +24635,7 @@ RS
RS
at
QZ
-OY
+UV
at
NN
QN
@@ -24206,12 +24651,12 @@ ac
ac
aP
at
-Sg
-Zl
-ZE
-RQ
-PX
-ED
+Mn
+bf
+bf
+RS
+RS
+QS
at
aP
aP
@@ -24332,7 +24777,7 @@ RS
RS
PF
TW
-OY
+UV
at
at
at
@@ -24348,12 +24793,12 @@ aP
aP
aP
at
-at
-at
-at
-at
-at
-at
+Sg
+Zl
+ZE
+RQ
+PX
+ED
at
aP
aP
@@ -24474,15 +24919,15 @@ RS
RS
at
QZ
-OY
+UV
at
MK
-Lo
-RS
-RS
-RS
+DK
RS
RS
+bf
+bf
+bf
RS
at
ac
@@ -24615,20 +25060,20 @@ NM
RS
RS
at
-TW
-OY
+Fs
+UV
at
YW
RS
at
at
at
-at
-at
-at
-at
-ac
-aP
+kk
+kk
+kk
+kk
+bW
+bW
bW
bW
fX
@@ -24758,21 +25203,21 @@ NM
RS
at
Qk
-OY
+UV
JO
-RS
-Lo
+bf
+DK
at
ac
ac
bW
-bW
-bW
-bW
-bW
-aP
-bW
-fw
+Jl
+Jp
+PW
+WS
+dK
+en
+dK
fY
gt
gT
@@ -24899,10 +25344,10 @@ Qs
NM
NM
at
-TW
-OY
+Fs
+UV
at
-Ww
+RS
RS
at
ac
@@ -24911,9 +25356,9 @@ bW
ck
cJ
dh
-bW
-bW
-bW
+Go
+Zy
+DG
fx
fX
gu
@@ -25041,22 +25486,22 @@ Qs
Ug
KG
at
-TW
-OY
-at
-at
+Fs
+UV
at
+Ww
+RS
at
ac
-ac
-bW
-cl
-cK
-di
-dK
-en
-dK
-fy
+af
+af
+af
+af
+af
+af
+af
+af
+af
fX
gv
gv
@@ -25184,22 +25629,22 @@ at
at
at
EH
-YM
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+PE
+ch
+ch
+ch
+ch
+ch
+af
+RE
+XX
+PM
+an
+EZ
+Ix
+Dq
+dx
+fX
gw
gw
gw
@@ -25322,26 +25767,26 @@ ac
at
FC
Ik
-PX
+Zb
MK
at
-UO
-ZL
-ae
+Vj
+MX
+ch
ag
av
aQ
bh
-aQ
-aQ
-cm
-cL
+af
+ao
+dk
+ap
dj
dL
-dL
-eN
-fz
-ae
+Tk
+BV
+dM
+fX
gw
gw
gw
@@ -25464,26 +25909,26 @@ ac
at
RS
RS
-RS
+bf
RS
at
-UO
-YM
-ae
-ah
+Vj
+PE
+ch
+ag
aw
-aR
-bi
-bB
-bX
-cn
-cM
-dk
+ch
+ch
+af
+cX
+dl
+cX
+af
bi
eo
-eO
-fA
-ae
+aV
+dj
+fX
gw
gw
gw
@@ -25610,22 +26055,22 @@ RS
RD
at
UO
-YM
+LB
ae
ai
ax
-aS
-aS
-aS
-bY
-co
-aS
-aS
-aS
-aS
-eP
+Za
+Fq
+af
+di
+do
+dt
+af
+XR
+UT
+BV
fB
-ae
+fX
gw
gw
gw
@@ -25746,28 +26191,28 @@ ac
ac
ac
at
-RS
-RS
+bf
+bf
RS
RS
at
TW
-YM
-ae
-aj
+Hc
+ch
+ag
ay
aT
bj
-bC
-aS
+af
+aq
cp
-aS
-dl
-dM
+BV
+af
+bN
ep
-eQ
-fC
-ae
+BV
+fB
+fX
gw
gw
gw
@@ -25776,8 +26221,8 @@ it
jb
jF
fX
-kR
-kR
+ac
+ac
kf
mM
mO
@@ -25890,26 +26335,26 @@ ac
at
RS
RS
-RS
+bf
RS
Ln
TW
-YM
-ae
-ah
-az
+Hc
+aS
+aS
+aS
aS
bk
-bD
aS
-cq
aS
-bD
-bk
+al
aS
-eR
-fD
-ae
+aS
+bO
+bP
+aS
+aS
+fX
fX
fX
fX
@@ -25918,8 +26363,8 @@ fX
jc
fX
fX
-kR
-kR
+ac
+ac
kf
mM
mO
@@ -26036,25 +26481,25 @@ RS
Dy
at
Kg
-YM
-ae
+Hc
+aS
ah
aA
-aS
-aS
-aS
-aS
+MC
+HH
+PP
+Qy
cr
-aS
-aS
-aS
-aS
+Lx
+bI
+Hx
+VU
eS
fD
-ae
-gx
-gx
-hr
+Pm
+aS
+Us
+Op
hQ
iu
jd
@@ -26178,26 +26623,26 @@ at
at
at
UO
-YM
-ae
-ah
-ay
+XH
+aS
+UR
+Xs
aU
bl
-bE
+aL
bZ
-cp
+Fw
cN
-dm
+bR
dN
eq
eQ
-fD
-ae
+dn
+IZ
gx
-gx
-hr
-hR
+HK
+Xx
+hQ
iv
je
jH
@@ -26320,27 +26765,27 @@ aP
ac
at
UO
-YM
-ae
+XH
+aS
ak
aB
-aV
+ak
bm
-bF
-ca
-cs
-cO
-dn
-bm
-er
-eT
-fD
-ae
-gx
-gx
-hr
-hS
-iv
+DF
+ar
+bb
+bt
+cg
+bv
+bB
+bE
+dQ
+Ye
+VB
+YK
+Nc
+hQ
+YN
jf
jI
kh
@@ -26462,27 +26907,27 @@ aP
kI
at
TW
-YM
-ae
-ah
+XH
+aS
+Rg
aC
-aS
-aS
-aS
-aS
-ct
-aS
-aS
-aS
-aS
-eU
-fD
-ae
-gx
-gx
-hr
-hT
-iw
+aC
+br
+DF
+au
+bc
+bu
+bG
+bw
+bD
+bF
+ZH
+Fb
+Rq
+JI
+Gl
+hQ
+Er
jg
jJ
kf
@@ -26604,32 +27049,32 @@ aP
aP
at
TW
-YM
-ae
+XH
+aS
ah
-ay
-aW
-bl
+aC
+aU
+GG
bG
cb
-cp
+UE
cP
-do
-dN
+DF
+dP
es
-eQ
-fD
-ae
-gx
-gx
-hr
-hr
-hr
+cP
+Em
+Em
+YE
+Qe
+FO
+TY
+TY
jh
-hr
-hr
-gx
-gx
+TY
+TY
+ac
+ac
kf
mO
mM
@@ -26746,32 +27191,32 @@ aP
aP
at
TW
-OY
-ae
-aj
+MT
+aS
+ah
aD
-aX
-bm
-bH
-ca
-cs
-cQ
+MC
+XC
+bK
+OI
+Qv
+bK
dp
-bm
-et
+Jc
+bK
eV
-fC
-ae
-gx
-gx
-gx
-hr
-ix
-ji
-jK
-hr
-gx
-gx
+bK
+bK
+Zu
+Ng
+JD
+TY
+aE
+aK
+bn
+TY
+TY
+ac
kf
mO
mM
@@ -26887,33 +27332,33 @@ ac
ac
ac
at
-TW
+Fs
QQ
-ae
-al
-aE
aS
aS
aS
aS
-cu
+Ld
+XT
aS
+Ld
+VF
aS
+Ld
+ZR
aS
+Ld
+Ui
aS
-eW
-fE
-ae
-gx
-gx
-gx
-hr
-iy
-jj
-jL
-hr
-gx
-gx
+Wk
+Eu
+dR
+aJ
+aZ
+bo
+Xp
+TY
+ac
kf
mP
nB
@@ -27029,33 +27474,33 @@ at
at
at
at
-QZ
-XA
-ae
+Et
+HP
+aS
am
aF
-aY
-bn
-bI
-cc
-cv
-cR
-dq
-dO
-eu
-eX
-fD
-ae
-gx
-gx
-gx
-hr
+aS
+cK
+cO
+aS
+cK
+cO
+aS
+cK
+cO
+aS
+cK
+cO
+aS
+PJ
+Ph
+TY
iz
-jj
-jj
-hr
-gx
-gx
+ad
+bp
+Xp
+TY
+ac
kf
mQ
nC
@@ -27173,31 +27618,31 @@ SI
Fv
VJ
Rb
-IK
+aS
Ew
-Fo
-TA
-bo
-bK
-bK
-cp
-bK
-bK
-dP
-ew
-eY
-fF
-ae
+am
+aS
+cL
+cQ
+aS
+cL
+cQ
+aS
+cL
+cQ
+aS
+cL
+cQ
+aS
gy
-gy
-gy
-gy
-gy
-gy
-jj
-hr
-gx
-gx
+Oc
+TY
+TY
+TY
+Yq
+TY
+TY
+kj
kf
iw
nD
@@ -27307,41 +27752,41 @@ Mq
Ql
SI
RT
-RS
-RS
-Lo
+bf
+bf
+DK
Rr
PX
at
QZ
XA
-ae
-ah
-aG
-aZ
-bp
-bK
-bK
-cp
-bK
-bK
-dQ
-ew
-eZ
-fG
-ae
-gz
+aS
+Gw
+am
+aS
+cM
+cR
+aS
+dq
+cR
+aS
+dw
+cR
+aS
+dO
+cR
+aS
gV
hs
hU
-iA
-gy
-jj
-hr
-hr
-hr
-hr
-hr
+hU
+aj
+Nj
+kj
+Pd
+KJ
+kj
+kj
nE
hr
hr
@@ -27448,8 +27893,8 @@ ab
at
VH
RS
-Lo
-Lo
+DK
+DK
at
at
at
@@ -27457,27 +27902,27 @@ at
at
UO
PV
-ae
-an
+aS
+aS
aG
-aZ
+aS
bq
bL
-cd
-cx
+aS
+bq
cS
-dr
-dR
+aS
+bq
ew
-fa
-fG
+aS
+bq
fZ
-gA
+aS
gW
ht
hV
-iB
-gy
+hV
+aj
jM
ki
kU
@@ -27589,7 +28034,7 @@ ab
ab
RB
ZJ
-Lo
+DK
Si
Py
at
@@ -27599,29 +28044,29 @@ ac
at
TW
OY
-ae
+RS
aj
-aG
-aZ
-br
-bK
-ce
-cy
+Qn
+bC
+aW
+XG
+bH
+aX
cT
-bK
-dS
-ew
-fb
-fH
-fZ
+bJ
+aY
+KQ
+bQ
+bd
+KQ
gB
gX
hu
-hV
+FI
iC
-gy
+aj
jN
-kj
+hr
kV
lE
mq
@@ -27731,7 +28176,7 @@ ab
ab
RB
Zl
-RS
+bf
Oj
Xk
at
@@ -27739,20 +28184,20 @@ aP
aP
aP
at
-TW
+Fs
YM
-ae
-ah
+RS
+aj
aH
-aZ
+Sl
bs
bM
cf
cz
-cf
+QH
ds
dT
-ew
+Vm
fc
fI
ga
@@ -27761,7 +28206,7 @@ gY
hv
hW
iD
-gy
+aj
jN
kj
kW
@@ -27881,29 +28326,29 @@ ac
aP
ac
at
-TW
+Fs
YM
-ae
-ao
-aI
+RS
+aj
+aj
+ba
+aj
+aj
ba
-bt
-bN
-cg
cA
cU
-dt
+cU
dU
-ex
+cU
+fd
+fd
+Vu
+fd
+fd
fd
-fJ
-ae
-gD
-gZ
-gZ
hX
-iE
-gy
+fd
+aj
jO
kj
kX
@@ -28025,27 +28470,27 @@ ac
at
TW
XM
-af
-ap
-aJ
-af
-af
-bO
-ch
-ch
-ch
+RS
+aj
+cw
+cB
+aj
+cw
+cB
+cA
+Ds
du
-ch
-ch
-fe
-fi
-fi
-fi
-fi
-fi
+QD
+aM
+fd
+Mp
+Sy
+Mp
+Fj
+En
hY
-iF
-gy
+fd
+LD
jP
kk
kY
@@ -28166,28 +28611,28 @@ aP
aP
at
TW
-XM
-af
-aq
-aK
-bb
-bu
-bP
-ch
-cB
+WJ
+RS
+aj
+cx
+cC
+aj
+cx
+cC
+cA
cV
dv
dV
-ch
-ff
+aR
+fd
fK
gb
gE
-fK
-fi
+Of
+WL
hZ
-iG
-jk
+fd
+fN
jQ
kk
kY
@@ -28309,26 +28754,26 @@ aP
at
TW
PV
-af
-ar
-aL
-bc
-bv
-bQ
-ch
-cC
-cW
-dw
-dW
-ch
-fg
+RS
+aj
+cy
+cD
+aj
+cy
+cD
+cA
+as
+az
+aI
+Kv
+fd
fL
gc
-gF
+Mp
ha
hw
ia
-iH
+fd
jl
jR
kk
@@ -28451,27 +28896,27 @@ aP
at
TW
XA
-af
-as
-aM
-bd
-bw
-bR
-ch
-cD
-cX
-dx
-dX
-ch
-fh
-fM
-gd
-fK
-fK
-fi
-ib
-iI
-gy
+RS
+aj
+aj
+aj
+aj
+aj
+aj
+cA
+cA
+cA
+cA
+cA
+fd
+fd
+fd
+fd
+fd
+fd
+fd
+fd
+Tj
jS
kk
kY
@@ -28593,28 +29038,28 @@ aP
at
TW
OY
-af
-af
-af
-af
-af
-af
-ch
-ch
-ch
-ch
-ch
-ch
+RS
+at
+RS
+RS
+bf
+bf
+bf
+RS
+aN
+aN
+XM
+Qu
fi
-fi
-fi
-fi
-fi
-fi
-gy
-gy
-gy
-jT
+XM
+aN
+aN
+XM
+XM
+aN
+aN
+XM
+jS
kk
kY
lH
@@ -28736,27 +29181,27 @@ at
MO
Ej
XM
-PF
+Qu
aN
+aN
+aN
+aN
+aN
+XM
+XM
be
-be
-be
-be
-be
-be
-be
-be
-be
-be
+Uf
+at
+YU
fN
-be
+RS
gG
-hb
-hb
-ic
-hb
-jm
-jU
+SI
+SI
+SI
+SI
+SI
+RT
kk
kY
kY
@@ -29501,11 +29946,11 @@ AN
AN
Bw
yY
-ad
-au
-au
-au
-bJ
+bX
+bY
+bY
+bY
+ca
yY
ac
ac
@@ -32026,7 +32471,7 @@ iY
iY
iY
iY
-iY
+ns
nh
nP
oy
@@ -32164,11 +32609,11 @@ OQ
Ll
iY
iY
-kc
-ky
-kc
-lW
-iY
+js
+js
+js
+js
+ns
nk
nP
oy
@@ -32308,8 +32753,8 @@ iY
js
kc
kz
-kc
-lX
+kd
+jx
my
EJ
nP
@@ -32448,10 +32893,10 @@ OQ
Ll
iY
jt
-kd
-kA
-lr
-lY
+js
+kz
+js
+jx
mz
nm
nP
@@ -32589,11 +33034,11 @@ OJ
OJ
TB
iY
-ju
-kc
-kB
-kc
-kc
+jt
+jt
+jx
+js
+NJ
mA
nn
nR
@@ -32731,12 +33176,12 @@ Ll
Uo
Ll
iY
-jv
-kc
+jt
+jt
kC
kc
-lZ
-iY
+jt
+ns
no
lJ
oC
@@ -32873,8 +33318,8 @@ Ll
EF
Ll
iY
-jw
-kc
+js
+Rl
kD
ls
ma
@@ -33016,11 +33461,11 @@ ZX
Ll
iY
jx
-kc
-kE
-kc
+jx
+js
+jt
mb
-iY
+ns
nq
nT
oE
@@ -33157,11 +33602,11 @@ Ll
Ll
Ll
iY
-jy
-kc
+jx
+js
kF
-kc
-kc
+jx
+Nh
mA
nl
nU
@@ -33299,11 +33744,11 @@ JL
Sv
Tf
iY
-jt
+jx
kd
kG
-lr
-kc
+jx
+YH
mA
nr
nV
@@ -33441,12 +33886,12 @@ OJ
OJ
OJ
iY
-jz
-kc
-kz
-kc
-kc
-iY
+jt
+jt
+Gd
+js
+js
+ns
ns
ns
ns
@@ -33584,10 +34029,10 @@ ac
ac
iY
iY
-ke
-kH
-kc
-mc
+jt
+jt
+js
+js
iY
ac
ac
diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm
index a9e2fda121..43f3805407 100644
--- a/maps/tether/tether-07-station3.dmm
+++ b/maps/tether/tether-07-station3.dmm
@@ -6,89 +6,75 @@
/turf/simulated/mineral/vacuum,
/area/mine/explored/upper_level)
"ac" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
frequency = 1379;
- master_tag = "sec_fore_airlock";
- name = "exterior access button";
- pixel_x = -25;
- pixel_y = -25;
+ icon_state = "door_locked";
+ id_tag = "sec_fore_outer";
+ locked = 1;
+ name = "Security Starboard External Access";
+ req_access = newlist();
req_one_access = list(1,2,18)
},
-/turf/simulated/floor/airless,
-/area/maintenance/station/sec_upper)
+/turf/simulated/floor,
+/area/security/eva)
"ad" = (
-/turf/simulated/floor/airless,
-/area/maintenance/station/sec_upper)
-"ae" = (
-/obj/machinery/light/small,
+/obj/structure/lattice,
+/obj/structure/grille,
/turf/space,
-/area/maintenance/station/sec_upper)
+/area/space)
+"ae" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
"af" = (
/turf/simulated/wall/r_wall,
/area/maintenance/station/sec_upper)
"ag" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "sec_fore_outer";
- locked = 1;
- name = "Security Starboard External Access";
- req_access = newlist();
- req_one_access = list(1,2,18)
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"ah" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "sec_fore_outer";
- locked = 1;
- name = "Security Starboard External Access";
- req_access = newlist();
- req_one_access = list(1,2,18)
- },
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"ai" = (
-/turf/simulated/wall/r_wall,
-/area/security/armory/red)
-"aj" = (
-/turf/simulated/wall/r_wall,
-/area/security/armory/green)
-"ak" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
- frequency = 1379;
- id_tag = "sec_fore_pump"
- },
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"al" = (
/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"am" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
+/area/security/eva)
+"ah" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"ai" = (
+/turf/simulated/wall/r_wall,
+/area/security/armory/red)
+"aj" = (
+/obj/structure/table/rack{
dir = 8;
- icon_state = "map"
+ layer = 2.6
},
-/obj/machinery/meter{
- frequency = 1443;
- id = "dist_aux_meter";
- name = "Distribution Loop"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/camera/network/engineering{
- dir = 4
+/obj/machinery/door/window/southleft{
+ name = "Hardsuit Storage";
+ req_access = list(1,2,18)
},
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"an" = (
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/eva)
+"ak" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 8;
frequency = 1379;
@@ -105,232 +91,156 @@
id_tag = "sec_fore_airlock";
pixel_x = 24;
pixel_y = 0;
- req_access = newlist();
- req_one_access = list(1,2,18);
+ req_one_access = list(13);
tag_airpump = "sec_fore_pump";
tag_chamber_sensor = "sec_fore_sensor";
tag_exterior_door = "sec_fore_outer";
tag_interior_door = "sec_fore_inner"
},
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/security/eva)
+"al" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"am" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "sec_fore_inner";
+ locked = 1;
+ name = "Security Fore Internal Access";
+ req_access = newlist();
+ req_one_access = list(1,2,18)
+ },
+/turf/simulated/floor,
+/area/security/eva)
+"an" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Security Restroom";
+ req_one_access = list(1,38)
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/security_bathroom)
"ao" = (
/turf/simulated/wall/r_wall,
/area/security/armory/blue)
"ap" = (
-/obj/structure/table/steel,
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Red Armory West";
+/obj/effect/floor_decal/borderfloorblack{
dir = 4
},
-/obj/item/weapon/storage/box/shotgunshells{
- pixel_x = 6;
- pixel_y = -1
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
},
-/turf/simulated/floor/reinforced,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
/area/security/armory/red)
"aq" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/shotgunshells{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/shotgunshells{
- pixel_x = 6;
- pixel_y = -1
- },
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"ar" = (
-/obj/structure/table/steel,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"as" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/projectile/shotgun/pump{
- ammo_type = /obj/item/ammo_casing/a12g/pellet;
- pixel_x = 2;
- pixel_y = -6
- },
-/obj/item/weapon/gun/projectile/shotgun/pump{
- ammo_type = /obj/item/ammo_casing/a12g/pellet;
- pixel_x = 1;
- pixel_y = 4
- },
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"at" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/laser{
- pixel_x = -1;
- pixel_y = -11
- },
-/obj/item/weapon/gun/energy/laser{
- pixel_x = -1;
- pixel_y = 2
- },
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"au" = (
-/obj/structure/table/steel,
-/obj/machinery/alarm{
- frequency = 1441;
- pixel_y = 22
- },
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"av" = (
-/obj/structure/table/steel,
-/obj/item/weapon/cell/device/weapon{
- pixel_x = -6;
- pixel_y = 3
- },
-/obj/item/weapon/cell/device/weapon{
- pixel_x = 5;
- pixel_y = 3
- },
-/obj/item/weapon/cell/device/weapon,
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"aw" = (
-/obj/structure/table/steel,
-/obj/item/weapon/gun/energy/ionrifle,
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Red Armory East";
- dir = 9
- },
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"ax" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "sec_fore_inner";
- locked = 1;
- name = "Security Fore Internal Access";
- req_access = newlist();
- req_one_access = list(1,2,18)
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"ay" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/door/airlock/glass_external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "sec_fore_inner";
- locked = 1;
- name = "Security Fore Internal Access";
- req_access = newlist();
- req_one_access = list(1,2,18)
- },
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"az" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"aA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"aB" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Briefing Room";
+ req_access = newlist();
+ req_one_access = list(1,38)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"ar" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/airlock/security{
+ name = "Security Restroom";
+ req_one_access = list(1,38)
},
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"aC" = (
+/turf/simulated/floor/tiled,
+/area/security/security_bathroom)
+"as" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(1,38)
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"at" = (
+/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/door/airlock/glass_security{
+ name = "Briefing Room";
+ req_access = newlist();
+ req_one_access = list(1,38)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"aD" = (
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"au" = (
+/obj/machinery/door/window/northright,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"av" = (
+/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"aE" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Break Room";
+ req_one_access = list(1,38)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"aw" = (
+/obj/machinery/door/window/northright,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
dir = 8
},
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"aF" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"aG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 4;
- icon_state = "map"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"aH" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"ax" = (
/obj/machinery/access_button{
command = "cycle_interior";
frequency = 1379;
@@ -338,480 +248,686 @@
name = "interior access button";
pixel_x = 25;
pixel_y = 25;
- req_one_access = list(1,2,18)
+ req_one_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/security/eva)
+"ay" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/security/eva)
+"az" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"aA" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(1,38)
},
/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
+/area/security/hallway)
+"aB" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aF" = (
+/turf/simulated/floor,
+/area/security/eva)
+"aG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(1,38)
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"aH" = (
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/security/eva)
"aI" = (
/turf/simulated/wall,
/area/maintenance/station/sec_upper)
"aJ" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
- },
-/obj/effect/floor_decal/corner/blue/border{
- icon_state = "bordercolor";
- dir = 9
- },
-/obj/structure/table/rack/shelf/steel,
-/obj/item/gunbox{
- pixel_y = 6
- },
-/obj/item/gunbox{
- pixel_y = -3
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/space,
+/area/space)
"aK" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
},
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
},
-/obj/structure/table/rack/shelf/steel,
-/obj/item/weapon/gun/energy/gun{
- pixel_y = 7
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(1,38)
},
-/obj/item/weapon/gun/energy/gun{
- pixel_y = 7
- },
-/obj/item/weapon/gun/energy/gun{
- pixel_y = 7
- },
-/obj/item/weapon/gun/energy/gun{
- pixel_y = 7
- },
-/obj/item/weapon/gun/energy/gun{
- pixel_y = -5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/turf/simulated/floor/tiled,
+/area/security/hallway)
"aL" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
},
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
},
-/obj/structure/table/steel,
-/obj/machinery/recharger,
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Blue Armory North"
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
},
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(1,38)
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
"aM" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
},
-/obj/effect/floor_decal/corner/blue/border{
- dir = 1
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.8;
+ name = "Security";
+ req_access = newlist();
+ req_one_access = list(1,38)
},
-/obj/structure/table/steel,
-/obj/item/weapon/cell/device/weapon{
- pixel_x = -1;
- pixel_y = 4
- },
-/obj/item/weapon/cell/device/weapon,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/turf/simulated/floor/tiled,
+/area/security/hallway)
"aN" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
},
-/obj/effect/floor_decal/corner/blue/border{
- dir = 5
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.8;
+ name = "Security";
+ req_access = newlist();
+ req_one_access = list(1,38)
},
-/obj/structure/table/steel,
-/obj/item/weapon/gun/energy/ionrifle/pistol,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
"aO" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall,
+/area/space)
+"aP" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/gglasses{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/glasses/gglasses,
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/ears/earmuffs,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -28
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aQ" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/blanks{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/box/blanks{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/ammo_magazine/clip/c762/practice,
+/obj/item/ammo_magazine/clip/c762/practice,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -28
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aR" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/ammo_magazine/m9mmt/practice,
+/obj/item/ammo_magazine/m9mmt/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aS" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"aT" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/northright{
+ req_access = list(1,2,18)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/eva)
+"aU" = (
+/turf/simulated/wall/r_wall,
+/area/security/eva)
+"aV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"aW" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -28
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"aX" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"aY" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"aZ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/structure/table/rack/steel,
/obj/item/clothing/gloves/arm_guard/bulletproof,
/obj/item/clothing/shoes/leg_guard/bulletproof,
/obj/item/clothing/suit/armor/bulletproof/alt,
/obj/item/clothing/head/helmet/bulletproof,
-/obj/structure/table/rack/shelf/steel,
-/turf/simulated/floor/reinforced,
+/turf/simulated/floor/tiled/dark,
/area/security/armory/red)
-"aP" = (
-/obj/item/clothing/gloves/arm_guard/riot,
-/obj/item/clothing/shoes/leg_guard/riot,
-/obj/item/clothing/suit/armor/riot/alt,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/weapon/shield/riot,
-/obj/structure/table/rack/shelf/steel,
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"aQ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"aR" = (
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"aS" = (
-/obj/item/clothing/gloves/arm_guard/laserproof,
-/obj/item/clothing/shoes/leg_guard/laserproof,
-/obj/item/clothing/suit/armor/laserproof{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/clothing/head/helmet/laserproof,
-/obj/structure/table/rack/shelf/steel,
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
-"aT" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/handcuffs{
- pixel_x = 6;
- pixel_y = -2
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 9
- },
-/obj/item/weapon/storage/box/evidence,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"aU" = (
-/obj/structure/table/steel,
-/obj/machinery/recharger,
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"aV" = (
-/obj/structure/table/steel,
-/obj/machinery/recharger,
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/obj/machinery/camera/network/security{
- c_tag = "Green Armory North"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"aW" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/obj/item/clothing/suit/armor/vest/alt{
- pixel_x = 6;
- pixel_y = -6
- },
-/obj/item/clothing/suit/armor/vest/alt{
- pixel_x = 6;
- pixel_y = 6
- },
-/obj/item/clothing/suit/armor/vest/alt{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/item/clothing/suit/armor/vest/alt{
- pixel_x = -4;
- pixel_y = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"aX" = (
-/obj/item/clothing/mask/gas{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/table/rack/shelf/steel,
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"aY" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/clothing/suit/armor/vest/wolftaur{
- pixel_x = -12;
- pixel_y = 9
- },
-/obj/item/clothing/suit/armor/vest/wolftaur{
- pixel_x = -16;
- pixel_y = 4
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"aZ" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
"ba" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"bb" = (
/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 4;
+ dir = 8;
icon_state = "map"
},
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"bb" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+/obj/machinery/meter{
+ frequency = 1443;
+ id = "dist_aux_meter";
+ name = "Distribution Loop"
},
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
+/obj/machinery/camera/network/engineering{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/security/eva)
"bc" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/turf/simulated/wall,
+/area/security/eva)
"bd" = (
/turf/simulated/floor/tiled/dark,
/area/security/armory/blue)
"be" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/obj/structure/closet/crate,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"bf" = (
-/obj/machinery/button/remote/airlock{
- id = "armory_red";
- name = "Armory Door Bolts";
- pixel_x = 26;
- pixel_y = 0;
- specialfunctions = 4
- },
-/turf/simulated/floor/reinforced,
-/area/security/armory/red)
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/range)
"bg" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/lockbox,
/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bh" = (
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bi" = (
-/obj/item/clothing/shoes/boots/jackboots/toeless{
- pixel_x = 7;
- pixel_y = -6
- },
-/obj/item/clothing/shoes/boots/jackboots/toeless{
- pixel_x = 7;
- pixel_y = 10
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bj" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"bk" = (
-/obj/machinery/atmospherics/binary/passive_gate/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"bl" = (
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Security EVA";
dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"bh" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/space,
+/area/space)
+"bi" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"bj" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/southright{
+ name = "Jetpack Storage";
+ req_access = list(1,2,18);
+ req_one_access = newlist()
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/turf/simulated/floor/tiled/dark,
+/area/security/eva)
+"bk" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
+/area/security/eva)
+"bl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
"bm" = (
/turf/simulated/wall,
/area/maintenance/substation/security)
"bn" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 4
},
-/obj/structure/window/reinforced,
-/obj/structure/table/rack/shelf/steel,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/turf/simulated/floor/tiled,
+/area/security/eva)
"bo" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"bp" = (
-/obj/machinery/door/window/brigdoor/southleft,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"bq" = (
-/obj/structure/window/reinforced,
-/obj/machinery/mech_recharger,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"br" = (
-/obj/effect/floor_decal/steeldecal/steel_decals_central4{
- dir = 8
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/multi_tile/metal/red{
- color = "";
- desc = "It opens and closes. Only accessible on Security Level Red.";
- id_tag = "armory_red";
- req_one_access = list(58);
- secured_wires = 1
- },
-/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"bs" = (
-/obj/effect/floor_decal/steeldecal/steel_decals_central4{
- icon_state = "steel_decals_central4";
+/area/security/warden)
+"bp" = (
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"bq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/warden)
+"br" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/red)
-"bt" = (
-/obj/structure/table/steel,
-/obj/item/weapon/cell/device/weapon{
- pixel_x = -3
- },
-/obj/item/weapon/cell/device/weapon{
- pixel_x = 3
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bu" = (
-/obj/effect/floor_decal/borderfloorblack/corner,
-/obj/effect/floor_decal/corner/green/bordercorner,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bv" = (
-/obj/machinery/vending/security,
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bw" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"bx" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"by" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"bs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"bt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"bu" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"bv" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/shotgunshells{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"bw" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/security)
+"bx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/armory/blue)
+"by" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
},
/obj/machinery/alarm{
- breach_detection = 0;
dir = 8;
pixel_x = 25;
- pixel_y = 0;
- report_danger_level = 0
+ pixel_y = 0
},
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
+/turf/simulated/floor,
+/area/maintenance/substation/security)
"bz" = (
/obj/machinery/power/sensor{
name = "Powernet Sensor - Security Subgrid";
@@ -849,247 +965,253 @@
/turf/simulated/floor,
/area/maintenance/substation/security)
"bC" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/item/clothing/suit/storage/vest/heavy/officer{
- pixel_x = 5;
- pixel_y = 4
- },
-/obj/item/clothing/suit/storage/vest/heavy/officer{
- pixel_x = 5;
- pixel_y = -6
- },
-/obj/item/clothing/suit/storage/vest/heavy/officer{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/clothing/suit/storage/vest/heavy/officer{
- pixel_x = -4;
- pixel_y = -6
- },
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Blue Armory West";
- dir = 4
+/obj/structure/table/reinforced,
+/obj/item/weapon/stamp/ward,
+/obj/item/weapon/stamp/denied{
+ pixel_x = 5
},
/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/area/security/warden)
"bD" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 4
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
},
-/obj/structure/table/rack/shelf/steel,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"bE" = (
-/obj/effect/floor_decal/industrial/warning{
+/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"bF" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"bG" = (
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
-/obj/effect/floor_decal/borderfloorblack{
+/obj/effect/floor_decal/corner/red/bordercorner2{
dir = 4
},
-/obj/effect/floor_decal/corner/blue/border{
- dir = 4
+/obj/structure/closet/secure_closet/warden,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat{
+ ammo_type = /obj/item/ammo_casing/a12g/beanbag;
+ desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock.";
+ name = "warden's shotgun"
},
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"bH" = (
-/obj/machinery/flasher/portable,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"bI" = (
-/obj/machinery/flasher/portable,
-/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/item/weapon/book/manual/security_space_law,
/obj/machinery/light{
dir = 1
},
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/obj/machinery/button/remote/airlock{
+ id = "armory_red";
+ name = "HoS Armory Access";
+ pixel_x = -10;
+ pixel_y = 28;
+ req_access = list(58)
+ },
/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"bJ" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
+/area/security/warden)
+"bE" = (
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bF" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"bG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/structure/sign/department/armory{
- color = "#BB2222";
- name = "RED ARMORY";
- pixel_y = 32
- },
-/obj/structure/sign/department/armory{
- color = "#2222BB";
- name = "BLUE ARMORY";
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bK" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"bH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bL" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bM" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light{
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"bI" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"bJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/suit_cycler/security,
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"bK" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"bL" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/camera/network/security{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"bM" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"bN" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
"bO" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"bP" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ icon_state = "bordercolorcorner";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"bQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"bR" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ icon_state = "bordercolor";
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/item/gunbox{
+ pixel_y = 6
+ },
+/obj/item/gunbox{
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"bS" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/photocopier,
+/obj/machinery/camera/network/security,
/obj/machinery/alarm{
pixel_y = 22
},
/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bP" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bQ" = (
-/obj/structure/sign/department/armory{
- color = "#22BB22";
- name = "GREEN ARMORY"
- },
-/turf/simulated/wall/r_wall,
-/area/security/armory/green)
-"bR" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- icon_state = "borderfloorcorner2_black";
- dir = 10
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- icon_state = "bordercolorcorner2";
- dir = 10
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"bS" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
+/area/security/warden)
"bT" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Door";
- opacity = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"bU" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Door";
- opacity = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"bV" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -28
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
},
+/obj/machinery/light/small,
/turf/simulated/floor,
/area/maintenance/substation/security)
+"bU" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall,
+/area/security/armory/red)
+"bV" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"bW" = (
/obj/machinery/power/terminal{
icon_state = "term";
@@ -1101,335 +1223,375 @@
/turf/simulated/floor,
/area/maintenance/substation/security)
"bX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/turf/simulated/floor,
-/area/maintenance/substation/security)
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
"bY" = (
/turf/simulated/wall/r_wall,
/area/ai)
+"bZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
"ca" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"cb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"cc" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"cd" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"ce" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"cf" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/button/remote/airlock{
- id = "armory_blue";
- name = "Armory Door Bolts";
- pixel_x = 26;
- pixel_y = -26;
- specialfunctions = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"cg" = (
-/obj/machinery/door/airlock/security{
- id_tag = "armory_blue";
- name = "Armory Storage";
- req_access = list(3)
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"ch" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"ci" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cj" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"ck" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cn" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"co" = (
-/obj/machinery/door/airlock/security{
- name = "Armory Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cp" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack/corner{
- icon_state = "borderfloorcorner_black";
- dir = 4
- },
-/obj/effect/floor_decal/corner/green/bordercorner{
- icon_state = "bordercolorcorner";
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"ct" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cu" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/camera/network/security{
- c_tag = "Green Armory East"
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cv" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"cw" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/machinery/door/airlock/glass_security{
+ name = "Firing Range";
+ req_access = list(1)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"cx" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
+/area/security/range)
+"cb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security EVA";
+ req_one_access = list(1,2,18)
},
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"cc" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 22;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"cd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Warden's Office";
+ req_access = list(3)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/warden)
+"ce" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/junction,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"cf" = (
+/turf/simulated/wall/r_wall,
+/area/security/hallwayaux)
+"cg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/hallwayaux)
+"ch" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"ci" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"cj" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"ck" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 10
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack/shelf/steel,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"cl" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -28
+ },
+/obj/structure/cable/green,
/turf/simulated/floor,
/area/maintenance/substation/security)
-"cy" = (
-/obj/structure/table/steel,
-/obj/machinery/cell_charger,
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000
+"cm" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/structure/closet/bombcloset/double,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"cn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"co" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"cp" = (
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/maintenance/cargo)
+"cq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 10;
+ icon_state = "fwindow";
+ id = "hos_office"
+ },
+/turf/simulated/floor,
+/area/crew_quarters/heads/hos)
+"cr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"cs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 10;
+ icon_state = "fwindow";
+ id = "hos_office"
+ },
+/turf/simulated/floor,
+/area/crew_quarters/heads/hos)
+"ct" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/hallwayaux)
+"cu" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Warden's Office"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"cv" = (
+/turf/simulated/wall/r_wall,
+/area/security/range)
+"cw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Security Substation";
+ req_one_access = list(1,11,24)
},
/turf/simulated/floor,
/area/maintenance/substation/security)
+"cx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"cy" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"cz" = (
/obj/structure/cable{
d1 = 1;
@@ -1452,7 +1614,7 @@
dir = 1
},
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/cargo)
"cB" = (
/obj/structure/cable{
d1 = 4;
@@ -1462,7 +1624,7 @@
/obj/structure/catwalk,
/obj/machinery/camera/network/command,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/cargo)
"cC" = (
/obj/structure/cable{
d1 = 4;
@@ -1471,7 +1633,7 @@
},
/obj/structure/catwalk,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/cargo)
"cD" = (
/obj/structure/cable{
d1 = 4;
@@ -1549,239 +1711,198 @@
/turf/simulated/floor/bluegrid,
/area/ai)
"cL" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
+/obj/effect/floor_decal/borderfloor{
+ pixel_y = 16
},
-/obj/effect/floor_decal/corner/blue/border{
- dir = 8
+/obj/effect/floor_decal/corner/red/border{
+ pixel_y = 16
},
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/stunshells{
- pixel_x = 3;
- pixel_y = 3
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 10
},
-/obj/item/weapon/storage/box/flashshells{
- pixel_x = 1;
- pixel_y = 0
- },
-/obj/item/weapon/storage/box/beanbags{
- pixel_x = 4;
- pixel_y = -5
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"cM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"cN" = (
-/obj/effect/floor_decal/borderfloorblack/corner,
-/obj/effect/floor_decal/corner/blue/bordercorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"cO" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"cP" = (
-/obj/machinery/deployable/barrier,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"cQ" = (
-/obj/machinery/deployable/barrier,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Blue Armory East";
+/obj/machinery/computer/secure_data{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"cR" = (
-/obj/machinery/deployable/barrier,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"cS" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cT" = (
-/obj/structure/table/rack/shelf/steel,
-/obj/machinery/camera/network/security{
- c_tag = "Red Armory Access";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cU" = (
-/obj/structure/table/rack/steel,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
+/obj/item/device/radio/intercom{
pixel_y = -24
},
/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cV" = (
-/obj/structure/closet/wardrobe/orange,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cW" = (
-/obj/structure/closet/l3closet/security,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cX" = (
-/obj/structure/closet/bombclosetsecurity,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light{
+/area/security/warden)
+"cM" = (
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"cN" = (
+/obj/structure/table/reinforced,
+/obj/item/device/retail_scanner/security,
/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"cZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/area/security/warden)
+"cO" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/button/remote/blast_door{
+ id = "security_lockdown";
+ name = "Brig Lockdown";
+ pixel_x = -28;
+ pixel_y = -36;
+ req_access = list(2)
},
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"da" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/button/remote/airlock{
+ id = "HoSdoor";
+ name = "Office Door";
+ pixel_x = -28;
+ pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/obj/machinery/button/windowtint{
+ id = "hos_office";
+ pixel_x = -36;
+ pixel_y = -26;
+ req_access = list(58)
},
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"db" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
+/obj/effect/landmark/start{
+ name = "Head of Security"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"cP" = (
+/turf/simulated/wall,
+/area/security/observation)
+"cQ" = (
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
pixel_x = 0
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
dir = 8
},
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/green/border{
- icon_state = "bordercolor";
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/green/bordercorner2{
- icon_state = "bordercolorcorner2";
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"dc" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- name = "Security EVA";
- req_access = newlist();
- req_one_access = list(1,2,18)
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"dd" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- name = "Security EVA";
- req_access = newlist();
- req_one_access = list(1,2,18)
- },
-/turf/simulated/floor/tiled,
-/area/maintenance/station/sec_upper)
-"de" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"cR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"cS" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/security/brig)
+"cT" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{
+ scrub_id = "sec_riot_control"
+ },
+/turf/simulated/open,
+/area/security/brig)
+"cU" = (
+/turf/simulated/wall/r_wall,
+/area/security/observation)
+"cV" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/security/brig)
+"cW" = (
/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/engineering{
- name = "Security Substation";
- req_one_access = list(1,11,24)
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/hallwayaux)
+"cX" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"cY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"cZ" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
+"da" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"db" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"dc" = (
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
+"dd" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor,
-/area/maintenance/substation/security)
+/area/maintenance/station/sec_upper)
+"de" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"df" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -1792,19 +1913,13 @@
/turf/simulated/wall,
/area/maintenance/substation/security)
"dg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
},
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/engineering{
- name = "Security Substation";
- req_one_access = list(1,11,24)
- },
-/turf/simulated/floor,
-/area/maintenance/substation/security)
+/obj/structure/table/steel,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
"dh" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -1813,7 +1928,7 @@
/obj/machinery/door/airlock/maintenance/int,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/cargo)
"di" = (
/obj/machinery/light{
dir = 8
@@ -1842,193 +1957,122 @@
/turf/simulated/floor/bluegrid,
/area/ai)
"dn" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 10
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/blue/bordercorner2{
- dir = 9
- },
-/obj/structure/table/steel,
-/obj/item/ammo_magazine/m45/rubber{
- pixel_x = 0;
- pixel_y = 9
- },
-/obj/item/ammo_magazine/m45/rubber{
- pixel_x = 0;
- pixel_y = -3
- },
-/obj/item/ammo_magazine/m45/rubber{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
+/obj/structure/bed/chair/office/dark{
+ dir = 1
},
/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
+/area/security/warden)
"do" = (
+/obj/machinery/light,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -32
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "security_lockdown";
+ name = "Brig Lockdown";
+ pixel_x = -6;
+ pixel_y = -40;
+ req_access = list(3)
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "warden";
+ name = "Office Shutters";
+ pixel_x = 6;
+ pixel_y = -39;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"dp" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"dq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 10;
+ icon_state = "fwindow";
+ id = "hos_office"
+ },
+/turf/simulated/floor,
+/area/crew_quarters/heads/hos)
+"dr" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"dp" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/effect/floor_decal/corner/blue/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorblack/corner2,
-/obj/effect/floor_decal/corner/blue/bordercorner2,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/blue)
-"dq" = (
-/obj/structure/closet/secure_closet/security,
-/obj/effect/floor_decal/industrial/outline,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
-"dr" = (
-/obj/structure/closet/secure_closet/security,
-/obj/effect/floor_decal/industrial/outline,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
+/area/crew_quarters/heads/hos)
"ds" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/structure/table/rack/shelf/steel{
- name = "shelving for Hunter"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
"dt" = (
-/obj/structure/table/rack/shelf/steel{
- name = "shelving for Protector"
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
"du" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/table/woodentable,
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = -32
},
/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
+/area/crew_quarters/heads/hos)
"dv" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
"dw" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
"dx" = (
-/obj/structure/lattice,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/obj/structure/cable/green{
- icon_state = "32-4"
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/open,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
+/turf/simulated/floor,
/area/maintenance/station/sec_upper)
"dy" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
+/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/door/airlock/maintenance/sec{
- name = "Security Maintenance";
- req_one_access = list(1,18)
- },
+/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
"dz" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
"dA" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
"dB" = (
/obj/structure/cable{
- icon_state = "1-4"
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
"dC" = (
@@ -2037,21 +2081,24 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
+/obj/structure/catwalk,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/cargo)
"dD" = (
/obj/structure/cable{
icon_state = "4-8"
},
/obj/random/junk,
+/obj/structure/catwalk,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/cargo)
"dE" = (
/obj/structure/cable{
icon_state = "4-8"
},
+/obj/structure/catwalk,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/cargo)
"dF" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -2062,7 +2109,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/cargo)
"dG" = (
/obj/structure/cable/cyan{
d2 = 2;
@@ -2095,122 +2142,128 @@
/turf/simulated/wall/r_wall,
/area/security/warden)
"dJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ icon_state = "extinguisher_closed";
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"dK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
},
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/security/warden)
-"dK" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8"
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"dL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/door/airlock/security{
- name = "Equipment Storage";
- req_access = list(3)
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"dL" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"dM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable/green{
- icon_state = "0-8"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/warden)
-"dM" = (
-/turf/simulated/wall/r_wall,
-/area/security/prison)
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
"dN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- name = "Break Room"
+/obj/structure/table/woodentable,
+/obj/machinery/photocopier/faxmachine{
+ department = "Head of Security"
},
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
"dO" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- name = "Break Room"
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/security/armory/green)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
"dP" = (
-/obj/structure/sign/department/armory{
- color = "#22BB22";
- name = "GREEN ARMORY"
- },
/turf/simulated/wall,
-/area/security/breakroom)
+/area/security/security_bathroom)
"dQ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Door";
- opacity = 0
- },
-/obj/machinery/door/airlock/maintenance/sec{
- name = "Security Maintenance";
- req_access = list(1,12)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/security/breakroom)
+/turf/simulated/floor/tiled/white,
+/area/security/security_bathroom)
"dR" = (
/turf/simulated/wall/r_wall,
/area/security/breakroom)
@@ -2223,7 +2276,7 @@
},
/obj/structure/catwalk,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/cargo)
"dU" = (
/obj/effect/landmark{
name = "tripai"
@@ -2331,231 +2384,233 @@
/turf/simulated/floor/tiled/techfloor/grid,
/area/ai)
"ed" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/obj/machinery/camera/network/security{
- dir = 4
- },
-/obj/structure/table/steel,
-/obj/item/weapon/wrench,
-/obj/item/weapon/crowbar,
-/obj/item/device/retail_scanner/security,
-/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/item/weapon/hand_labeler,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/obj/structure/railing,
+/turf/space,
+/area/space)
"ee" = (
/obj/effect/floor_decal/borderfloorblack{
- dir = 1
+ dir = 8
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
},
-/obj/machinery/status_display{
- density = 0;
- layer = 4;
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/closet/secure_closet/warden,
-/obj/effect/floor_decal/industrial/outline/grey,
-/obj/item/weapon/gun/projectile/shotgun/pump/combat{
- ammo_type = /obj/item/ammo_casing/a12g/beanbag;
- desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock.";
- name = "warden's shotgun"
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/area/security/armory/blue)
"ef" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
},
/obj/effect/floor_decal/corner/red/border{
- dir = 1
+ dir = 10
},
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/floor_decal/industrial/outline/grey,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
"eg" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/junk,
+/obj/random/maintenance/medical,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"eh" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ icon_state = "bordercolorcorner";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"eh" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/obj/machinery/computer/security,
-/obj/effect/floor_decal/industrial/outline/grey,
-/obj/structure/sign/department/armory{
- color = "#2222BB";
- name = "BLUE ARMORY";
- pixel_x = 32;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"ei" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/warden)
-"ej" = (
-/turf/simulated/open,
-/area/security/prison)
-"ek" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/open,
-/area/security/prison)
-"el" = (
-/obj/machinery/camera/network/security,
-/turf/simulated/open,
-/area/security/prison)
-"em" = (
-/obj/machinery/status_display{
- pixel_y = 30
- },
-/turf/simulated/open,
-/area/security/prison)
-"en" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"eo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"ep" = (
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"ei" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"ej" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"ek" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/item/device/radio/intercom{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"el" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"em" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/maintenance/station/ai)
+"en" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/folder/red_hos,
+/obj/item/weapon/pen/multi,
+/obj/item/device/radio/intercom/department/security{
+ dir = 4;
+ icon_state = "secintercom";
+ pixel_x = 24;
+ pixel_y = 0
+ },
/turf/simulated/floor/wood,
-/area/security/breakroom)
+/area/crew_quarters/heads/hos)
+"eo" = (
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/security_bathroom)
+"ep" = (
+/turf/simulated/wall,
+/area/security/security_lockerroom)
"eq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"er" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1379;
+ icon_state = "map_vent";
+ id_tag = "eva_port_maint_pump"
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"es" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"et" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/wood,
/area/security/breakroom)
-"er" = (
-/obj/structure/table/steel,
-/obj/machinery/microwave,
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"es" = (
-/obj/structure/table/steel,
-/obj/machinery/chemical_dispenser/bar_soft/full,
-/obj/item/weapon/storage/box/glasses/square,
-/obj/machinery/status_display{
- pixel_y = 30
- },
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"et" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
"eu" = (
-/obj/structure/toilet,
-/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
-"ev" = (
-/obj/machinery/light/small{
- dir = 1
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
},
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"ev" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ icon_state = "borderfloorcorner_black";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ icon_state = "bordercolorcorner";
+ dir = 8
+ },
+/obj/structure/table/bench/steel,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
"ew" = (
/obj/effect/floor_decal/techfloor{
dir = 8
@@ -2585,126 +2640,161 @@
/turf/simulated/floor/tiled/techfloor/grid,
/area/ai)
"ey" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = -24
- },
-/obj/structure/table/steel,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/clipboard,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/pen,
-/obj/item/device/radio{
- pixel_x = -4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/turf/simulated/floor/carpet,
+/area/security/breakroom)
"ez" = (
/turf/simulated/floor/tiled/dark,
/area/security/warden)
"eA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"eB" = (
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/machinery/vending/cola,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"eC" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"eB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"eC" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/bed/chair/office/dark{
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"eD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/observation)
+"eE" = (
+/obj/machinery/computer/secure_data{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"eD" = (
-/obj/structure/railing,
-/turf/simulated/open,
-/area/security/prison)
-"eE" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/open,
-/area/security/prison)
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
"eF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
+/obj/structure/table/woodentable,
+/obj/item/clothing/accessory/permit/gun,
+/obj/item/clothing/accessory/permit/gun,
+/obj/item/clothing/accessory/permit/gun,
+/obj/item/clothing/accessory/permit/gun,
+/obj/item/clothing/accessory/permit/gun,
+/obj/item/weapon/paper{
+ desc = "";
+ info = "In the event that more weapon permits are needed, please fax Central Command to request more. Please also include a reason for the request. Blank permits will be shipped to cargo for pickup. If long-term permits are desired, please contact your NanoTrasen Employee Representitive for more information.";
+ name = "note from CentCom about permits"
+ },
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 38;
pixel_y = 0
},
/turf/simulated/floor/wood,
-/area/security/breakroom)
+/area/crew_quarters/heads/hos)
"eG" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"eH" = (
-/obj/structure/bed/chair,
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"eI" = (
-/obj/structure/bed/chair,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/wood,
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
/area/security/breakroom)
+"eH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/security/breakroom)
+"eI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/catwalk,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"eJ" = (
/turf/simulated/floor/wood,
/area/security/breakroom)
"eK" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/donkpockets,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
},
-/turf/simulated/floor/wood,
-/area/security/breakroom)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/structure/table/bench/steel,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
"eL" = (
/turf/simulated/floor/tiled/white,
/area/security/security_bathroom)
"eM" = (
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/obj/structure/mirror{
- pixel_x = 30
- },
-/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/silver,
+/obj/item/weapon/bone/skull,
+/mob/living/simple_animal/hostile/mimic/crate,
+/turf/simulated/mineral/floor/cave,
+/area/maintenance/station/ai)
"eN" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -2715,7 +2805,7 @@
dir = 4
},
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/cargo)
"eO" = (
/obj/machinery/ai_slipper{
icon_state = "motion0"
@@ -2783,128 +2873,165 @@
/turf/simulated/floor/tiled/techfloor/grid,
/area/ai)
"eS" = (
-/obj/effect/floor_decal/borderfloorblack{
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"eT" = (
+/turf/simulated/wall,
+/area/security/security_equiptment_storage)
+"eU" = (
+/obj/structure/closet/crate,
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/obj/item/clothing/accessory/tie/horrible,
+/obj/random/drinkbottle,
+/obj/item/weapon/flame/lighter/random,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"eV" = (
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/red/border{
dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 8
- },
-/obj/machinery/photocopier,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"eT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"eU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/landmark/start{
- name = "Warden"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"eV" = (
-/obj/structure/table/steel,
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/obj/item/weapon/clipboard,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/pen,
-/obj/item/device/binoculars,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
"eW" = (
-/obj/structure/catwalk,
-/turf/simulated/open,
-/area/security/prison)
+/obj/structure/closet/crate,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"eX" = (
-/obj/structure/railing{
- dir = 8
- },
-/turf/simulated/open,
-/area/security/prison)
-"eY" = (
+/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/security/breakroom)
-"eZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/security/briefing_room)
+"eY" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/turf/simulated/floor/wood,
-/area/security/breakroom)
+/area/crew_quarters/heads/hos)
+"eZ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/hand_labeler,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
"fa" = (
-/obj/structure/bed/chair{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/wood,
/area/security/breakroom)
"fb" = (
-/obj/structure/table/glass,
-/obj/item/weapon/deck/cards,
-/turf/simulated/floor/wood,
-/area/security/breakroom)
+/obj/effect/floor_decal/rust,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
"fc" = (
-/obj/structure/table/glass,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"fd" = (
+/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"fd" = (
-/obj/structure/bed/chair{
- dir = 8
+/obj/machinery/door/airlock/glass_security{
+ name = "Equipment Storage"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/wood,
-/area/security/breakroom)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
"fe" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
},
-/obj/item/device/radio/intercom/department/security{
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"ff" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "secintercom";
- pixel_x = 24;
- pixel_y = 0
+ icon_state = "pipe-c"
},
/turf/simulated/floor/wood,
/area/security/breakroom)
-"ff" = (
-/obj/machinery/door/airlock/security{
- name = "Security Restroom"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
"fg" = (
/obj/machinery/alarm{
dir = 1;
@@ -2949,126 +3076,173 @@
/turf/simulated/floor/bluegrid,
/area/ai)
"fk" = (
-/obj/machinery/light{
- dir = 8
- },
/obj/effect/floor_decal/borderfloorblack{
- dir = 8
+ dir = 1
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
},
-/obj/structure/table/steel,
-/obj/machinery/photocopier/faxmachine{
- department = "Warden's Office"
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/item/device/radio/intercom/department/security{
- dir = 8;
- icon_state = "secintercom";
- pixel_x = -24;
- pixel_y = 0
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/suit/armor/vest/wolftaur{
+ pixel_x = -16;
+ pixel_y = 4
+ },
+/obj/item/clothing/suit/armor/vest/wolftaur{
+ pixel_x = -12;
+ pixel_y = 9
},
/turf/simulated/floor/tiled/dark,
-/area/security/warden)
+/area/security/security_equiptment_storage)
"fl" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
/area/security/warden)
"fm" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
},
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"fn" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- name = "Warden's Office";
- req_access = list(3)
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"fo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"fp" = (
-/obj/structure/bed/chair{
+/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"fq" = (
-/obj/structure/table/glass,
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"fr" = (
-/obj/structure/bed/chair{
- dir = 8
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"fs" = (
-/obj/machinery/camera/network/security{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/device/radio/intercom{
- dir = 4;
- pixel_x = 24
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"fn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/westleft{
+ dir = 1;
+ name = "Warden's Desk";
+ req_access = list(3)
+ },
+/obj/machinery/door/window/brigdoor/eastleft{
+ dir = 2;
+ name = "Warden's Desk";
+ req_access = list(1)
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "warden";
+ layer = 3.1;
+ name = "Warden's Office Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled,
+/area/security/warden)
+"fo" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
},
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"ft" = (
/obj/structure/cable/green{
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -28
+/obj/structure/closet{
+ name = "Evidence Closet"
},
-/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
-"fu" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"fp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"fq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"fr" = (
/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
+ dir = 1;
pixel_x = 0;
- pixel_y = 26
+ pixel_y = -24
},
-/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"fs" = (
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"ft" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"fu" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
"fv" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_access = newlist();
+ req_one_access = list(1,38)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
"fw" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_access = newlist();
+ req_one_access = list(1,38)
},
-/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
+/turf/simulated/floor/tiled/dark,
+/area/security/security_processing)
"fx" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -3079,7 +3253,7 @@
pixel_y = 0
},
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
+/area/maintenance/cargo)
"fy" = (
/obj/effect/floor_decal/techfloor{
dir = 8
@@ -3106,227 +3280,209 @@
/turf/simulated/floor/tiled/techfloor/grid,
/area/ai)
"fz" = (
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/floor_decal/industrial/outline/grey,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"fA" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"fB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"fC" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"fD" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/obj/machinery/button/remote/blast_door{
- id = "security_lockdown";
- name = "Brig Lockdown";
- pixel_x = 29;
- pixel_y = 5;
- req_access = list(2)
- },
-/obj/machinery/button/remote/blast_door{
- id = "Priacc";
- name = "Prison Main Blast Door";
- pixel_x = 29;
- pixel_y = -7;
- req_access = list(2)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"fE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"fF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"fG" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"fH" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"fA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"fI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"fJ" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"fB" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"fK" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"fC" = (
+/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/security{
- name = "Security Restroom"
+ name = "Equipment Storage";
+ req_access = newlist()
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"fD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/security_bathroom)
-"fL" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"fE" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"fF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/station/ai)
+"fG" = (
+/obj/structure/railing{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"fH" = (
+/turf/simulated/wall,
+/area/security/detectives_office)
+"fI" = (
+/obj/effect/floor_decal/borderfloorblack{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/obj/effect/floor_decal/borderfloorblack/corner2{
dir = 6
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
+/obj/structure/closet{
+ name = "Evidence Closet"
},
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"fJ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/white/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 5
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/computer/med_data/laptop,
+/obj/machinery/camera/network/security,
/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
+/area/security/forensics)
+"fK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/table/steel,
+/obj/item/device/camera,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"fL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
"fM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/white/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/white/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 5
},
/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
+/area/security/forensics)
"fN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_access = newlist();
+ req_one_access = list(1,38)
},
-/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
"fO" = (
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/white,
-/area/security/security_bathroom)
+/area/security/forensics)
"fP" = (
/turf/simulated/wall/r_wall,
/area/ai/foyer)
@@ -3398,90 +3554,1554 @@
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
"fW" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"fX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"fY" = (
/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/lockbox,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"fZ" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/vending/fitness,
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"ga" = (
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/red/border{
dir = 8
},
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = -26;
- pixel_y = 22
- },
-/obj/machinery/computer/prisoner{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/grey,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"fX" = (
-/obj/structure/table/steel,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/stamp/denied{
- pixel_x = 5
- },
-/obj/item/weapon/stamp/ward,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"fY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/effect/floor_decal/borderfloor/corner2{
dir = 8
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"fZ" = (
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"gb" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/security/brig)
+"gc" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/white/border,
+/obj/machinery/dnaforensics,
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"gd" = (
+/obj/structure/closet/crate,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"ge" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/target_stake,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"gf" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"gg" = (
+/turf/simulated/floor/airless,
+/area/space)
+"gh" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"gi" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"gj" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "sec_fore_airlock";
+ name = "exterior access button";
+ pixel_x = -25;
+ pixel_y = -25;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"gk" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"gl" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "sec_fore_outer";
+ locked = 1;
+ name = "Security Starboard External Access";
+ req_access = newlist();
+ req_one_access = list(1,2,18)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor,
+/area/security/eva)
+"gm" = (
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"gn" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"go" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/projectile/shotgun/pump{
+ ammo_type = /obj/item/ammo_casing/a12g/pellet;
+ pixel_x = 2;
+ pixel_y = -6
+ },
+/obj/item/weapon/gun/projectile/shotgun/pump{
+ ammo_type = /obj/item/ammo_casing/a12g/pellet;
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gp" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/rack/steel,
+/obj/item/clothing/gloves/arm_guard/laserproof,
+/obj/item/clothing/shoes/leg_guard/laserproof,
+/obj/item/clothing/suit/armor/laserproof{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/clothing/head/helmet/laserproof,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gq" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gr" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/energy/laser{
+ pixel_x = -1;
+ pixel_y = -11
+ },
+/obj/item/weapon/gun/energy/laser{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gs" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/rack/steel,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/weapon/shield/riot,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gt" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/item/weapon/gun/energy/ionrifle,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gu" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"gv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"gw" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"ga" = (
+/area/security/range)
+"gx" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 2;
+ frequency = 1379;
+ id_tag = "sec_fore_pump"
+ },
+/turf/simulated/floor,
+/area/security/eva)
+"gy" = (
+/turf/simulated/wall,
+/area/maintenance/station/ai)
+"gz" = (
/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack/steel,
+/obj/item/clothing/gloves/arm_guard/bulletproof,
+/obj/item/clothing/shoes/leg_guard/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/head/helmet/bulletproof,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gA" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gB" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gC" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack/steel,
+/obj/item/clothing/gloves/arm_guard/laserproof,
+/obj/item/clothing/shoes/leg_guard/laserproof,
+/obj/item/clothing/suit/armor/laserproof{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/clothing/head/helmet/laserproof,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gD" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gE" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack/shelf/steel,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gF" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack/steel,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/weapon/shield/riot,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gG" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/structure/window/reinforced,
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gH" = (
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"gI" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"gJ" = (
+/turf/simulated/mineral/vacuum,
+/area/maintenance/station/ai)
+"gK" = (
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"gL" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"gM" = (
+/obj/structure/table/rack{
+ dir = 4
+ },
+/obj/random/maintenance/medical,
+/obj/random/maintenance/research,
+/obj/item/weapon/storage/toolbox,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"gN" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gO" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gP" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"gR" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"gS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"gT" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/southright{
+ name = "Hardsuit Storage";
+ req_access = list(1,2,18)
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/eva)
+"gU" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/southleft{
+ name = "Jetpack Storage";
+ req_access = list(1,2,18)
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/turf/simulated/floor/tiled/dark,
+/area/security/eva)
+"gV" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"gW" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"gX" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"gY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "sec_fore_inner";
+ locked = 1;
+ name = "Security Fore Internal Access";
+ req_access = newlist();
+ req_one_access = list(1,2,18)
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor,
+/area/security/eva)
+"gZ" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/security/eva)
+"ha" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/security/eva)
+"hb" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/security/eva)
+"hc" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"hd" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals4,
+/obj/structure/table/rack/steel,
+/obj/machinery/camera/network/security,
/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"gb" = (
-/obj/structure/railing{
+/area/security/armory/blue)
+"he" = (
+/obj/effect/floor_decal/borderfloorblack{
dir = 1
},
-/turf/simulated/open,
-/area/security/prison)
-"gc" = (
-/obj/structure/railing{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/light/small{
+ icon_state = "bulb1";
dir = 1
},
-/obj/structure/railing{
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"hf" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/table/rack/shelf/steel,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"hg" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/open,
-/area/security/prison)
-"gd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hl" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice,
+/obj/item/ammo_magazine/clip/c762/practice,
+/obj/item/ammo_magazine/clip/c762/practice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/ammo_magazine/clip/c762/practice,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"hm" = (
+/obj/machinery/door/window/northright,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"hn" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/weapon/gun/energy/laser/practice,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"ho" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/weapon/gun/energy/laser/practice,
+/turf/simulated/floor/tiled/dark,
+/area/security/range)
+"hp" = (
+/turf/simulated/wall,
+/area/security/range)
+"hq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"hr" = (
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"hs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"ht" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"hu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Security Airlock Access";
+ req_access = list(1,2,18)
+ },
+/turf/simulated/floor,
+/area/security/eva)
+"hv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
+/turf/simulated/floor,
+/area/security/eva)
+"hw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor,
+/area/security/eva)
+"hx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9;
+ icon_state = "intact"
+ },
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/floor,
+/area/security/eva)
+"hy" = (
+/turf/simulated/mineral/floor/cave,
+/area/maintenance/station/ai)
+"hz" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/pickaxe,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"hA" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/structure/table/rack/steel,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"hB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"hC" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/structure/table/rack/shelf/steel,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"hD" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hE" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hF" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/shotgunshells{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/shotgunshells{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/button/remote/airlock{
+ id = "armory_red";
+ name = "HoS Armory Access";
+ pixel_x = -10;
+ pixel_y = -24;
+ req_access = list(58)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hG" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/structure/table/steel,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -6;
+ pixel_y = 3
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -28
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -38
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hH" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/structure/table/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "armoryred";
+ name = "Red Armory Access";
+ pixel_x = 8;
+ pixel_y = -24;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/range)
+"hK" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"hL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"hM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"hN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"hO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"hP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"hQ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/security/eva)
+"hR" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"hS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/armory/blue)
+"hT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/airlock/highsecurity{
+ name = "Sensitive Object Lockup";
+ req_one_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"hU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security/armory{
+ color = "";
+ desc = "It opens and closes. Only accessible on Security Level Red.";
+ id_tag = "armory_red";
+ req_one_access = list(3);
+ secured_wires = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"hV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/security{
+ name = "Armory Storage";
+ secured_wires = 1
+ },
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ icon_state = "pdoor1";
+ id = "armoryred";
+ name = "Red Armory";
+ p_open = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Armory Storage";
+ secured_wires = 1
+ },
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ icon_state = "pdoor1";
+ id = "armoryred";
+ name = "Red Armory";
+ p_open = 0
+ },
+/obj/structure/sign/department/armory{
+ color = "#Bf4040";
+ name = "RED ARMORY";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/red)
+"hX" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/range)
+"hY" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/northleft{
+ name = "Hardsuit Storage";
+ req_access = list(1,2,18)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/eva)
+"hZ" = (
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Security Airlock Access";
+ req_one_access = newlist()
+ },
+/turf/simulated/floor,
+/area/security/eva)
+"ia" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/clean,
+/obj/random/maintenance/research,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"ib" = (
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"ic" = (
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"id" = (
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ icon_state = "bulb1";
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"ie" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
+"if" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/item/weapon/gun/energy/gun{
+ pixel_y = 7
+ },
+/obj/item/weapon/gun/energy/gun{
+ pixel_y = -5
+ },
+/obj/item/weapon/gun/energy/gun{
+ pixel_y = -5
+ },
+/obj/item/weapon/gun/energy/gun{
+ pixel_y = 7
+ },
+/obj/item/weapon/gun/energy/gun{
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"ig" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ icon_state = "bordercolor";
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ icon_state = "borderfloorcorner2_black";
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"ih" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"ii" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"ij" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/wrench,
+/obj/item/weapon/hand_labeler,
+/obj/structure/sign/department/armory{
+ color = "#3385ff";
+ name = "BLUE ARMORY";
+ pixel_x = -32
+ },
+/obj/structure/sign/department/armory{
+ color = "#Bf4040";
+ name = "RED ARMORY";
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"ik" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"il" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"im" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"in" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/eva)
+"io" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security EVA";
+ req_one_access = list(1,2,18)
+ },
+/turf/simulated/floor/tiled,
+/area/security/eva)
+"ip" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"iq" = (
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"ir" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/research,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"is" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/closet/crate,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"it" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
+"iu" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"iv" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor/eastright,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"iw" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"ix" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"iy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Blue Armory";
+ req_access = list(3);
+ secured_wires = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"iz" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_security,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"ge" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -3490,75 +5110,1739 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"gf" = (
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iC" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable/green{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ icon_state = "extinguisher_closed";
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iD" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iF" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Security Substation";
+ req_access = list(1);
+ req_one_access = newlist()
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/security)
+"iJ" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"iK" = (
+/obj/structure/table/steel,
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"iL" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"iM" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ icon_state = "borderfloorcorner2_black";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"iN" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/suit/storage/vest/heavy/officer{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/storage/vest/heavy/officer{
+ pixel_x = 5;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/storage/vest/heavy/officer{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/suit/storage/vest/heavy/officer{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"iO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/security/warden)
+"iP" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen,
+/obj/item/device/radio{
+ pixel_x = -4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"iQ" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iR" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iS" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iT" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"iU" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/substation/security)
+"iV" = (
+/turf/simulated/wall,
+/area/maintenance/cargo)
+"iW" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"iX" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"iY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
+"iZ" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/deployable/barrier,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"ja" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jb" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jc" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/security/warden)
+"je" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/hos)
+"jf" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"jg" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jh" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"ji" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/structure/table/steel,
+/obj/item/ammo_magazine/m45/rubber{
+ pixel_x = 0;
+ pixel_y = 9
+ },
+/obj/item/ammo_magazine/m45/rubber{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/ammo_magazine/m45/rubber{
+ pixel_x = 0;
+ pixel_y = -3
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32;
+ pixel_y = 2
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32;
+ pixel_y = -9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jj" = (
+/obj/effect/floor_decal/borderfloor{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/corner/red/border{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/machinery/computer/prisoner{
+ icon_state = "computer";
+ dir = 1
+ },
+/obj/item/device/radio/intercom/department/security{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"jk" = (
+/turf/simulated/open,
+/area/security/brig)
+"jl" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"jm" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"jn" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/device/taperecorder{
+ pixel_y = 0
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"jo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/table/woodentable,
+/obj/item/device/radio/off,
+/obj/item/device/megaphone,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
+"jp" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/photocopier,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
+"jq" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"jr" = (
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"js" = (
+/obj/structure/closet,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/obj/random/drinkbottle,
+/obj/random/tool,
+/obj/random/maintenance/cargo,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"jt" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"ju" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/flasher/portable,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/stunshells{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/flashshells{
+ pixel_x = 1;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/box/beanbags{
+ pixel_x = 4;
+ pixel_y = -5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "armoryblue";
+ name = "Blue Armory Access";
+ pixel_x = 24;
+ pixel_y = -8;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"jx" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"jy" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/security/brig)
+"jz" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"jA" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"jB" = (
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"jC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
+"jD" = (
+/obj/random/junk,
+/turf/simulated/mineral/floor/cave,
+/area/maintenance/station/ai)
+"jE" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/structure/closet/l3closet/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/security{
+ name = "Armory Storage";
+ secured_wires = 1
+ },
+/obj/machinery/door/blast/regular{
+ dir = 1;
+ id = "armoryblue";
+ name = "Blue Armory"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jH" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "armoryblue";
+ name = "Blue Armory Access";
+ pixel_x = -24;
+ pixel_y = 24;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/firealarm{
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"jJ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/security/brig)
+"jK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"jL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Brig Observation"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/observation)
+"jM" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"jN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green{
+ dir = 2;
+ pixel_x = -10;
+ pixel_y = 12
+ },
+/obj/machinery/computer/skills{
+ icon_state = "laptop";
+ dir = 4
+ },
+/obj/item/clothing/accessory/permit/gun{
+ desc = "An example of a card indicating that the owner is allowed to carry a firearm. There's a note saying to fax CentCom if you want to order more blank permits.";
+ name = "sample weapon permit";
+ owner = 1
+ },
+/obj/item/weapon/paper{
+ desc = "";
+ info = "The Chief of Security at CentCom is debating a new policy. It's not official yet, and probably won't be since it's hard to enforce, but I suggest following it anyway. That policy is, if a security officer claims they need more than two extra magazines (or batteries) to go on routine patrols, fire them. If they cannot subdue a single suspect using all that ammo, they are not competent as Security.\[br]-Jeremiah Acacius";
+ name = "note to the Head of Security"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"jO" = (
+/obj/machinery/computer/security,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"jP" = (
+/obj/structure/table/rack{
+ dir = 4
+ },
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
+"jQ" = (
+/obj/machinery/atmospherics/portables_connector,
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
+"jR" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/deployable/barrier,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jS" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Armory Storage";
+ secured_wires = 1
+ },
+/obj/machinery/door/blast/regular{
dir = 1;
+ id = "armoryblue";
+ name = "Blue Armory"
+ },
+/obj/structure/sign/department/armory{
+ color = "#3385ff";
+ name = "BLUE ARMORY";
pixel_x = 0;
- pixel_y = -24
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"jU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"jV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/command{
+ id_tag = "HoSdoor";
+ name = "Head of Security";
+ req_access = list(58)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"jW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"jX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/stamp/hos,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hos)
+"jY" = (
+/obj/random/trash_pile,
+/turf/simulated/mineral/floor/cave,
+/area/maintenance/station/ai)
+"jZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
+"ka" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
+"kb" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
+"kc" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ icon_state = "borderfloorcorner_black";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"kd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"ke" = (
+/obj/machinery/mech_recharger,
+/obj/effect/floor_decal/corner_techfloor_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"kf" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall,
+/area/security/armory/blue)
+"kg" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/open,
+/area/security/brig)
+"kh" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"ki" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"kj" = (
+/obj/structure/railing,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"kk" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"kl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ icon_state = "map";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
+"km" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
+"kn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/station/ai)
+"ko" = (
+/turf/simulated/wall/r_wall,
+/area/security/security_equiptment_storage)
+"kp" = (
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/security/eva)
+"kq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"kr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"ks" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"kt" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"ku" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/wood,
-/area/security/breakroom)
-"gg" = (
+/area/crew_quarters/heads/hos)
+"kv" = (
/obj/structure/cable/green{
- icon_state = "0-8"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
+"kw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5;
+ icon_state = "intact"
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"kx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10;
+ icon_state = "intact"
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"ky" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"kz" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/evidence,
+/obj/item/weapon/storage/box/handcuffs{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24;
+ req_access = list()
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"kA" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/suit/armor/vest/alt{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/armor/vest/alt{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/clothing/suit/armor/vest/alt{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/armor/vest/alt{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"kB" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"kC" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/machinery/vending/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"kD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/observation)
+"kE" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/observation)
+"kF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/table/woodentable,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Security's Desk";
+ departmentType = 5;
+ name = "Head of Security RC";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"kG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/closet/secure_closet/hos2,
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
+"kH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/hos,
+/obj/item/clothing/suit/space/void/security/fluff/hos{
+ armor = list("melee" = 70, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 10);
+ species_restricted = null
+ },
+/obj/item/clothing/head/helmet/space/void/security/fluff/hos{
+ armor = list("melee" = 70, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 10);
+ species_restricted = null
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
+"kI" = (
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/command_guide,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hos)
+"kJ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/machinery/shower{
+ pixel_y = 16
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_bathroom)
+"kK" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"kL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"kM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"kN" = (
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/computer/area_atmos/tag{
+ dir = 2;
+ scrub_id = "sec_riot_control"
+ },
+/turf/simulated/floor/tiled,
+/area/security/observation)
+"kO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/obj/machinery/power/apc{
dir = 2;
name = "south bump";
pixel_y = -32
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"gh" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/security/breakroom)
-"gi" = (
-/obj/machinery/shower{
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen,
+/obj/machinery/camera/network/security{
dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
+/obj/item/device/megaphone,
+/obj/effect/floor_decal/borderfloor/shifted,
+/obj/effect/floor_decal/corner/red/border/shifted,
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
dir = 10
},
+/obj/structure/cable/green,
/turf/simulated/floor/tiled,
+/area/security/observation)
+"kP" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"kQ" = (
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"kR" = (
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"kS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"kT" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "eva_port_maint_pump"
+ },
+/obj/random/junk,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"kU" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1379;
+ id_tag = "eva_port_maint_pump"
+ },
+/obj/machinery/light/small{
+ icon_state = "bulb1";
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"kV" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ icon_state = "bulb1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
/area/security/security_bathroom)
-"gj" = (
+"kW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/security_bathroom)
+"kX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/security_bathroom)
+"kY" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = -3
+ },
+/obj/item/weapon/cell/device/weapon{
+ pixel_x = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"kZ" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"la" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/structure/table/rack/shelf/steel,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"lb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"lc" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"ld" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_security,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallwayaux)
+"le" = (
+/turf/simulated/wall/r_wall,
+/area/security/briefing_room)
+"lf" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"lg" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/papershredder,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"lh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/photocopier/faxmachine{
+ department = "Security"
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"li" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/multi,
+/obj/structure/table/reinforced,
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"lj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"lk" = (
/obj/effect/floor_decal/techfloor{
dir = 8
},
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"gk" = (
+"ll" = (
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"gl" = (
+"lm" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable/cyan{
d1 = 1;
@@ -3575,140 +6859,280 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ai/foyer)
-"gm" = (
+"ln" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"gn" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/obj/machinery/computer/secure_data{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/grey,
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"go" = (
-/obj/effect/floor_decal/borderfloorblack,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"gp" = (
-/obj/effect/floor_decal/borderfloorblack,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"gq" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"gr" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloorblack/corner2,
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"gs" = (
-/obj/machinery/light,
-/turf/simulated/open,
-/area/security/prison)
-"gt" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/open,
-/area/security/prison)
-"gu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- name = "Break Room"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/breakroom)
-"gv" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- name = "Break Room"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/breakroom)
-"gw" = (
+"lo" = (
/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
icon_state = "1-2"
},
/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"lp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ icon_state = "map";
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"lq" = (
+/obj/machinery/door/airlock/external{
+ locked = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"lr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"ls" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"lt" = (
+/obj/machinery/door/airlock/external{
+ locked = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"lu" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/undies_wardrobe,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/security_bathroom)
+"lv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/security/security_bathroom)
+"lw" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/security_bathroom)
+"lx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Equipment Storage";
+ req_access = newlist()
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"ly" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/security{
+ name = "Equipment Storage";
+ req_access = newlist()
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_equiptment_storage)
+"lz" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"lA" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"lB" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/security/hallway)
+"lC" = (
+/turf/simulated/open,
+/area/security/hallway)
+"lD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/hallway)
+"lE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"lF" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"lG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8;
+ icon_state = "borderfloor";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"lH" = (
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"lI" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"lJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ icon_state = "extinguisher_closed";
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"lK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/weapon/book/codex,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"lL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"lM" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
pixel_x = -22;
pixel_y = 0
},
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"lN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"gx" = (
+/area/maintenance/cargo)
+"lO" = (
/obj/effect/floor_decal/techfloor{
dir = 8
},
@@ -3717,13 +7141,13 @@
},
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"gy" = (
+"lP" = (
/obj/machinery/ai_slipper{
icon_state = "motion0"
},
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"gz" = (
+"lQ" = (
/obj/structure/cable/cyan{
d1 = 1;
d2 = 2;
@@ -3733,7 +7157,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techfloor,
/area/ai/foyer)
-"gA" = (
+"lR" = (
/obj/effect/floor_decal/techfloor{
dir = 4
},
@@ -3743,205 +7167,314 @@
},
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"gB" = (
+"lS" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"lT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"lU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"lV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"lW" = (
+/obj/machinery/door/airlock/external{
+ locked = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"lX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ icon_state = "map";
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"lY" = (
/turf/space,
/area/shuttle/antag_space/north)
-"gC" = (
-/turf/simulated/wall/r_wall,
-/area/security/range)
-"gD" = (
-/obj/structure/table/steel,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/window/brigdoor/eastleft{
+"lZ" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ icon_state = "bulb1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/security_bathroom)
+"ma" = (
+/obj/machinery/power/apc{
dir = 2;
- name = "Warden's Desk";
- req_access = list(1)
+ name = "south bump";
+ pixel_y = -28
},
-/obj/machinery/door/window/brigdoor/westleft{
- dir = 1;
- name = "Warden's Desk";
- req_access = list(3)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"gE" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/security/security_bathroom)
+"mb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- name = "Warden's Office";
- req_access = list(3)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"gF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/warden)
-"gG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/warden)
-"gH" = (
-/turf/simulated/wall/r_wall,
-/area/security/hallway)
-"gI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/security/hallway)
-"gJ" = (
-/obj/structure/sign/department/prison,
-/turf/simulated/wall/r_wall,
-/area/security/hallway)
-"gK" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- name = "Security Cells";
- req_access = list(1)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/prison)
-"gL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"gM" = (
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/turf/simulated/floor/tiled/white,
+/area/security/security_bathroom)
+"mc" = (
+/obj/effect/floor_decal/borderfloorblack{
dir = 9
},
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"gN" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
/obj/effect/floor_decal/corner/red/border{
- dir = 5
+ dir = 9
},
-/obj/effect/floor_decal/borderfloor/corner2{
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/item/device/radio/intercom/department/security{
+ dir = 8;
+ icon_state = "secintercom";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ icon_state = "extinguisher_closed";
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"md" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
dir = 4
},
/obj/effect/floor_decal/corner/red/bordercorner2{
dir = 4
},
-/obj/machinery/camera/network/security,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"gO" = (
-/turf/simulated/wall/r_wall,
-/area/security/detectives_office)
-"gP" = (
-/obj/structure/closet/secure_closet/detective,
-/obj/item/weapon/reagent_containers/spray/pepper,
-/obj/item/weapon/gun/energy/taser,
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"gQ" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
+/obj/structure/table/steel,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 32
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"gR" = (
-/obj/item/weapon/storage/secure/safe{
- pixel_x = 6;
- pixel_y = 28
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"gS" = (
-/obj/machinery/light{
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"me" = (
+/obj/effect/floor_decal/borderfloorblack{
dir = 1
},
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"gT" = (
-/obj/machinery/alarm{
- pixel_y = 22
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
},
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"gU" = (
-/obj/effect/landmark/start{
- name = "Detective"
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
},
-/obj/structure/bed/chair/office/dark,
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
},
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"gV" = (
-/obj/machinery/computer/security/wooden_tv,
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"gW" = (
+/obj/structure/table/steel,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/crowbar,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 30
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 20
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"mf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"mg" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/obj/structure/closet/wardrobe/red,
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"mh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/security_lockerroom)
+"mi" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"mj" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"mk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Security";
+ sortType = "Security"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"ml" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"mm" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"mn" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/red,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"mo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"mp" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/item/weapon/folder/red_hos,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"mq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"mr" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"gX" = (
+"ms" = (
/obj/structure/ladder{
pixel_y = 16
},
@@ -3952,253 +7485,218 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techfloor,
/area/ai/foyer)
-"gY" = (
+"mt" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"gZ" = (
-/obj/structure/noticeboard,
-/turf/simulated/wall/r_wall,
-/area/security/range)
-"ha" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
+"mu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"mv" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"mw" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1379;
+ icon_state = "map_vent";
+ id_tag = "eva_port_maint_pump"
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"mx" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
},
/obj/effect/floor_decal/corner/red/border{
- dir = 9
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/nifsofts_security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"my" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall,
+/area/security/security_bathroom)
+"mz" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
},
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
+ dir = 6
},
/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
+ dir = 6
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hb" = (
+/area/security/security_processing)
+"mA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"mB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"mC" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"mD" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/closet/wardrobe/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"mE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hc" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"hd" = (
+"mF" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1
+ dir = 4
},
/obj/effect/floor_decal/corner/red/border{
- dir = 1
+ dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
/turf/simulated/floor/tiled,
/area/security/hallway)
-"he" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hf" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/status_display{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hg" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hh" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hi" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hj" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hl" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/camera/network/security,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hm" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hn" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"ho" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hp" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner{
- icon_state = "bordercolorcorner";
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hq" = (
-/turf/simulated/open,
-/area/security/hallway)
-"hr" = (
+"mG" = (
/obj/structure/railing{
dir = 8
},
-/obj/effect/floor_decal/borderfloor/corner{
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/security/hallway)
+"mH" = (
+/turf/simulated/wall/r_wall,
+/area/security/hallway)
+"mI" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/open,
+/area/security/brig)
+"mJ" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light{
dir = 4
},
-/obj/effect/floor_decal/corner/red/bordercorner{
- dir = 4
+/turf/simulated/open,
+/area/security/brig)
+"mK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/security/hallway)
-"hs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+"mL" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"ht" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -4207,62 +7705,91 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"hu" = (
+"mM" = (
/obj/effect/floor_decal/borderfloor{
- dir = 4
+ dir = 8
},
/obj/effect/floor_decal/corner/red/border{
- dir = 4
+ dir = 8
},
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
+ dir = 8
},
/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
+ dir = 8
},
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"mN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/glass,
+/obj/item/weapon/folder/red,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"mO" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hv" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/security/briefing_room)
+"mP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"mQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
},
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"hw" = (
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"hx" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"hy" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/item/clothing/glasses/sunglasses,
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"hz" = (
-/obj/structure/table/woodentable,
-/obj/item/device/taperecorder{
- pixel_x = -4;
- pixel_y = 2
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
},
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"hA" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp/green,
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"hB" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"mR" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"mS" = (
+/obj/structure/catwalk,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"mT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"mU" = (
+/obj/structure/railing,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"mV" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"mW" = (
/obj/effect/floor_decal/techfloor{
dir = 10
},
@@ -4271,19 +7798,19 @@
},
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"hC" = (
+"mX" = (
/obj/effect/floor_decal/techfloor,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"hD" = (
+"mY" = (
/obj/effect/floor_decal/techfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"hE" = (
+"mZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -4296,19 +7823,19 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ai/foyer)
-"hF" = (
+"na" = (
/obj/effect/floor_decal/techfloor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"hG" = (
+"nb" = (
/obj/effect/floor_decal/techfloor,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"hH" = (
+"nc" = (
/obj/effect/floor_decal/techfloor{
dir = 6
},
@@ -4317,1281 +7844,988 @@
},
/turf/simulated/floor/bluegrid,
/area/ai/foyer)
-"hI" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+"nd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"ne" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ icon_state = "extinguisher_closed";
+ pixel_y = 32
},
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"nf" = (
+/obj/machinery/camera/network/security,
/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27;
- pixel_y = 0
+ pixel_y = 32
},
-/obj/machinery/camera/network/security{
- dir = 4
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"ng" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
},
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hJ" = (
/obj/structure/cable/green{
- d1 = 1;
d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hM" = (
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hQ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"nh" = (
+/obj/machinery/light{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hV" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"hZ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"ia" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"ib" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- id_tag = "detdoor";
- name = "Detective";
- req_access = list(4)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/detectives_office)
-"ic" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"id" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"ie" = (
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"ni" = (
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"nj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"if" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"ig" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flash,
-/obj/item/weapon/handcuffs,
-/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"ih" = (
-/obj/structure/flora/pottedplant,
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"ii" = (
-/obj/structure/table/woodentable,
-/obj/machinery/camera/network/security{
- dir = 9
- },
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"ij" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/target_stake,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"ik" = (
+/area/security/security_lockerroom)
+"nk" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/structure/table/bench/steel,
/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"il" = (
-/obj/structure/closet/crate,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
+/area/security/security_lockerroom)
+"nl" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/security,
/obj/machinery/light{
- dir = 1
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
},
/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"im" = (
+/area/security/security_lockerroom)
+"nm" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/red/border{
dir = 8
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/item/device/radio/intercom{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"nn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/extinguisher_cabinet{
dir = 8;
- pixel_x = -24
+ icon_state = "extinguisher_closed";
+ pixel_x = 30
},
/turf/simulated/floor/tiled,
/area/security/hallway)
-"in" = (
+"no" = (
+/turf/simulated/wall,
+/area/security/hallway)
+"np" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"nq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"nr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"ns" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"nt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/storage/box/donut,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"nu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"nv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"nw" = (
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"nx" = (
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"ny" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/mineral/vacuum,
+/area/maintenance/station/ai)
+"nz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"nA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"nB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/catwalk,
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"nC" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"nD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/security/breakroom)
+"nE" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/carpet,
+/area/security/breakroom)
+"nF" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor/carpet,
+/area/security/breakroom)
+"nG" = (
+/obj/structure/table/steel,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/obj/item/weapon/storage/box/glasses/square,
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"nH" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"nI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"nJ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"nK" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"nL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"nM" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"nN" = (
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"nO" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"nP" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"nQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"nR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"nS" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/folder/red,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"nT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"nU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"nV" = (
+/obj/structure/ladder{
+ pixel_y = 16
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"nW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/security/breakroom)
+"nX" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/security/breakroom)
+"nY" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet,
+/area/security/breakroom)
+"nZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"oa" = (
+/obj/structure/table/steel,
+/obj/machinery/microwave,
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"ob" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"oc" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"od" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"oe" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/structure/closet/secure_closet/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"of" = (
+/turf/simulated/wall/r_wall,
+/area/security/security_processing)
+"og" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "brig_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/security_processing)
+"oh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/security_processing)
+"oi" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"oj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"ok" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"ol" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"om" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/folder/red,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"on" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
-/area/security/hallway)
-"io" = (
-/obj/effect/floor_decal/borderfloor/corner,
-/obj/effect/floor_decal/corner/red/bordercorner,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"ip" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/light,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iq" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"ir" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"is" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"it" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iu" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iv" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iw" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"ix" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/light,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iy" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iz" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iA" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iB" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iC" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iD" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
-"iF" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/storage/photo_album{
- pixel_y = -10
- },
-/obj/item/device/camera_film,
-/obj/item/device/camera{
- desc = "A one use - polaroid camera. 30 photos left.";
- name = "detectives camera";
- pictures_left = 30;
- pixel_x = 2;
- pixel_y = 3
- },
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"iG" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"iH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"iI" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iJ" = (
+/area/security/briefing_room)
+"oo" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/red/border{
dir = 4
},
-/obj/structure/cable/green,
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
pixel_x = 28
},
-/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/item/device/taperecorder{
+ pixel_y = 0
+ },
+/obj/item/device/megaphone,
+/obj/structure/table/reinforced,
/turf/simulated/floor/tiled,
-/area/security/hallway)
-"iK" = (
-/turf/simulated/wall/r_wall,
/area/security/briefing_room)
-"iL" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized{
- dir = 10;
- icon_state = "fwindow";
- id = "sec_bief"
- },
-/turf/simulated/floor/plating,
-/area/security/briefing_room)
-"iM" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/glass_security{
- name = "Briefing Room";
- req_access = list(1)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/briefing_room)
-"iN" = (
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/heads/hos)
-"iO" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/window/reinforced/polarized{
- dir = 1
- },
-/obj/structure/window/reinforced/polarized,
-/obj/structure/window/reinforced/polarized{
- dir = 10;
- icon_state = "fwindow";
- id = null
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/heads/hos)
-"iP" = (
-/obj/structure/grille,
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/polarized{
- dir = 1
- },
-/obj/structure/window/reinforced/polarized,
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/reinforced/polarized{
- dir = 10;
- icon_state = "fwindow";
- id = null
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/heads/hos)
-"iQ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/command{
- id_tag = "HoSdoor";
- name = "Head of Security";
- req_access = list(58)
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/crew_quarters/heads/hos)
-"iR" = (
-/obj/structure/grille,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/polarized{
- dir = 1
- },
-/obj/structure/window/reinforced/polarized,
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/reinforced/polarized{
- dir = 10;
- icon_state = "fwindow";
- id = null
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/heads/hos)
-"iS" = (
-/turf/simulated/wall/r_wall,
-/area/security/forensics)
-"iT" = (
-/obj/structure/bookcase,
-/obj/item/weapon/book/manual/security_space_law,
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"iU" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/lino,
-/area/security/detectives_office)
-"iV" = (
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"iW" = (
-/obj/effect/landmark/start{
- name = "Detective"
- },
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/carpet,
-/area/security/detectives_office)
-"iX" = (
+"op" = (
/obj/structure/cable{
icon_state = "1-2"
},
/obj/structure/catwalk,
/obj/random/junk,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"iY" = (
-/turf/simulated/wall,
/area/maintenance/cargo)
-"iZ" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"jb" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+"oq" = (
+/obj/random/obstruction,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"or" = (
+/obj/item/weapon/storage/laundry_basket,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"os" = (
+/obj/structure/table/rack{
+ dir = 1
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"ot" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"ou" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
+/turf/simulated/floor/carpet,
+/area/security/breakroom)
+"ov" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"jc" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
+/obj/structure/table/woodentable,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/item/weapon/deck/cards,
+/turf/simulated/floor/carpet,
+/area/security/breakroom)
+"ow" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"jd" = (
-/obj/machinery/disposal,
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/security/breakroom)
+"ox" = (
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"oy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_security{
+ name = "Equipment Storage"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_lockerroom)
+"oz" = (
+/turf/simulated/wall,
+/area/security/evidence_storage)
+"oA" = (
+/turf/simulated/wall,
+/area/security/security_processing)
+"oB" = (
/obj/effect/floor_decal/borderfloor{
dir = 9
},
/obj/effect/floor_decal/corner/red/border{
dir = 9
},
-/obj/structure/disposalpipe/trunk,
+/obj/structure/table/steel,
/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"je" = (
+/area/security/security_processing)
+"oC" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/item/device/radio/intercom/department/security{
dir = 1;
- icon_state = "secintercom";
- pixel_y = 24
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jf" = (
-/obj/structure/table/standard,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/hand_labeler,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+ pixel_y = 0
},
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/item/device/radio/intercom{
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"oD" = (
+/obj/effect/floor_decal/borderfloor{
dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jg" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/papershredder,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jh" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/autoinjectors,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"ji" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/table/standard,
-/obj/item/roller,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jj" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
+ pixel_y = 0
},
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
+/obj/structure/table/steel,
/obj/machinery/light{
dir = 1
},
-/obj/structure/table/standard,
-/obj/item/bodybag/cryobag{
- pixel_x = 6
- },
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 5;
- pixel_y = 5
- },
/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jk" = (
+/area/security/security_processing)
+"oE" = (
/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/flora/pottedplant,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jl" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jm" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jn" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jo" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jp" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/obj/machinery/alarm{
- frequency = 1441;
- pixel_y = 22
- },
-/obj/structure/table/standard,
-/obj/item/device/universal_translator,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jq" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{
- pixel_x = -4;
- pixel_y = 8
- },
-/obj/item/device/taperecorder{
pixel_y = 0
},
-/obj/effect/floor_decal/borderfloorblack{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/obj/item/weapon/book/manual/security_space_law,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"jr" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"js" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/computer/secure_data,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"oF" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
},
/obj/effect/floor_decal/corner/red/border{
- dir = 1
+ dir = 5
},
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 1
+/obj/structure/table/steel,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"oG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
},
/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
+ dir = 6
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"jt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"ju" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"oH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
},
/obj/effect/floor_decal/corner/red/border{
- dir = 1
+ dir = 10
},
-/obj/effect/floor_decal/borderfloorblack/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"jv" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"jw" = (
-/obj/machinery/disposal,
-/obj/effect/floor_decal/borderfloorblack{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/structure/disposalpipe/trunk{
+/obj/effect/floor_decal/borderfloor/corner2{
dir = 8
},
-/obj/machinery/light_switch{
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"oI" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"oJ" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"oK" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/item/device/radio/intercom/department/security{
dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
+ icon_state = "secintercom";
+ pixel_y = -24
},
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"jx" = (
-/obj/effect/floor_decal/borderfloorwhite/cee{
+/obj/machinery/camera/network/security{
dir = 1
},
-/obj/effect/floor_decal/corner/red/bordercee,
-/obj/structure/closet{
- name = "Evidence Closet"
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"oL" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/item/device/radio/intercom{
+ pixel_y = -24
},
-/obj/item/weapon/storage/box/gloves,
-/obj/item/weapon/storage/box/evidence,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/storage/briefcase/crimekit,
-/obj/item/weapon/storage/briefcase/crimekit,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"jy" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"oM" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- id_tag = "detdoor";
- name = "Detective";
- req_access = list(4)
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"oN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
},
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"jz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/security/forensics)
-"jA" = (
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/item/device/radio{
+ pixel_x = -4
+ },
+/obj/item/device/radio{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/security/briefing_room)
+"oO" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -5600,7 +8834,7 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/cargo)
-"jB" = (
+"oP" = (
/obj/structure/disposalpipe/tagger{
dir = 8;
name = "package tagger - Trash";
@@ -5612,7 +8846,7 @@
},
/turf/simulated/floor,
/area/maintenance/cargo)
-"jC" = (
+"oQ" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -5620,297 +8854,453 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/cargo)
-"jD" = (
+"oR" = (
/obj/random/trash_pile,
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/cargo)
-"jE" = (
+"oS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "32-4"
+ },
+/turf/simulated/open,
+/area/maintenance/station/ai)
+"oT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"oU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"oV" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/medical,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"oW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
/obj/structure/grille,
/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/security/range)
-"jF" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"jG" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"jH" = (
-/obj/structure/table/standard,
-/obj/item/clothing/accessory/badge/holo,
-/obj/item/clothing/accessory/badge/holo,
-/obj/item/clothing/accessory/badge/holo/cord,
-/obj/effect/floor_decal/borderfloor{
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
+/turf/simulated/floor,
+/area/security/breakroom)
+"oX" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jJ" = (
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jK" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jL" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jN" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/item/device/megaphone,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"jO" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/folder/red_hos,
-/obj/item/weapon/pen/multi,
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/machinery/keycard_auth{
- pixel_x = -28
- },
-/obj/item/weapon/book/manual/command_guide,
-/obj/item/weapon/book/manual/standard_operating_procedure,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"jP" = (
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"jQ" = (
/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"jR" = (
-/obj/structure/bed/chair,
+/area/security/breakroom)
+"oY" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/security/breakroom)
+"oZ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/security/breakroom)
+"pa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"pb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pd" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pe" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pf" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pg" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"ph" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ icon_state = "bordercolorcorner";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"jS" = (
/obj/structure/cable/green{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "1-8"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"jT" = (
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"jU" = (
-/obj/effect/floor_decal/borderfloorblack{
+/obj/structure/disposalpipe/junction,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pi" = (
+/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/red/border{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals6,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
},
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
pixel_x = 28
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"jV" = (
-/obj/effect/floor_decal/borderfloorwhite/corner{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"jW" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"jX" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/obj/machinery/disposal,
-/obj/structure/cable/green{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"jY" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pj" = (
+/obj/effect/floor_decal/borderfloorblack{
dir = 9
},
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"jZ" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ icon_state = "borderfloorcorner2_black";
+ dir = 10
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
+/obj/structure/closet{
+ name = "Evidence Closet"
},
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 4
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"pk" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
},
-/obj/structure/table/reinforced,
-/obj/machinery/computer/med_data/laptop,
-/obj/structure/window/reinforced{
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"pl" = (
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"ka" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
/obj/effect/floor_decal/corner/red/border{
- dir = 1
+ dir = 8
},
-/obj/machinery/dnaforensics,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"kb" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
},
-/obj/structure/table/reinforced,
-/obj/machinery/microscope,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"kc" = (
-/obj/effect/floor_decal/borderfloorwhite{
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"pm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"pn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/device/flashlight/lamp,
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"po" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"pp" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/folder/red{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/weapon/folder/red,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"pq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
dir = 5
},
-/obj/structure/table/reinforced,
-/obj/item/weapon/forensics/sample_kit,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"kd" = (
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pr" = (
+/turf/simulated/wall,
+/area/security/briefing_room)
+"ps" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
@@ -5920,14 +9310,14 @@
},
/turf/simulated/floor,
/area/maintenance/cargo)
-"ke" = (
+"pt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/cargo)
-"kf" = (
+"pu" = (
/obj/structure/disposalpipe/sortjunction/wildcard/flipped{
dir = 1
},
@@ -5937,13 +9327,13 @@
},
/turf/simulated/floor,
/area/maintenance/cargo)
-"kg" = (
+"pv" = (
/obj/structure/railing,
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/cargo)
-"kh" = (
+"pw" = (
/obj/structure/railing,
/obj/machinery/light/small{
dir = 1
@@ -5951,7 +9341,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/cargo)
-"ki" = (
+"px" = (
/obj/structure/railing,
/obj/machinery/power/apc{
dir = 1;
@@ -5965,7 +9355,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/cargo)
-"kj" = (
+"py" = (
/obj/structure/railing,
/obj/structure/cable/green{
d1 = 2;
@@ -5983,244 +9373,198 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/cargo)
-"kk" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+"pz" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"pA" = (
+/obj/structure/table/rack{
+ dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"kl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/medical,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"pB" = (
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"pC" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"km" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"kn" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = -26;
- pixel_y = 0
- },
-/obj/item/weapon/storage/box/nifsofts_security,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"ko" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"kp" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"kq" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"kr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"ks" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"kt" = (
-/obj/structure/table/woodentable,
-/obj/machinery/photocopier/faxmachine{
- department = "Head of Security"
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"ku" = (
-/obj/structure/table/woodentable,
-/obj/item/device/flashlight/lamp/green{
- dir = 2;
- pixel_x = 10;
- pixel_y = 12
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"kv" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/stamp/hos,
+/turf/simulated/floor/wood,
+/area/security/breakroom)
+"pD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/breakroom)
+"pE" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pF" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
+/obj/item/device/radio/intercom{
+ dir = 2;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pG" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pH" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pI" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ icon_state = "bordercolorcorner";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"kw" = (
-/obj/structure/table/woodentable,
-/obj/machinery/computer/skills{
- pixel_y = 4
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/item/weapon/paper{
- desc = "";
- info = "The Chief of Security at CentCom is debating a new policy. It's not official yet, and probably won't be since it's hard to enforce, but I suggest following it anyway. That policy is, if a security officer claims they need more than two extra magazines (or batteries) to go on routine patrols, fire them. If they cannot subdue a single suspect using all that ammo, they are not competent as Security.\[br]-Jeremiah Acacius";
- name = "note to the Head of Security"
- },
-/obj/item/clothing/accessory/permit/gun{
- desc = "An example of a card indicating that the owner is allowed to carry a firearm. There's a note saying to fax CentCom if you want to order more blank permits.";
- name = "sample weapon permit";
- owner = 1
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"kx" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Security's Desk";
- departmentType = 5;
- name = "Head of Security RC";
- pixel_x = 32;
- pixel_y = 0
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pJ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"ky" = (
-/obj/effect/floor_decal/borderfloorwhite{
+/area/security/evidence_storage)
+"pK" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"pL" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"pM" = (
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"pN" = (
+/obj/structure/closet,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"pO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"pP" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/structure/table/steel,
+/obj/item/device/taperecorder,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"pQ" = (
+/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/red/border{
dir = 8
},
-/obj/structure/closet{
- name = "Evidence Closet"
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
},
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"kz" = (
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"kA" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"kB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pR" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"kC" = (
-/obj/machinery/door/window/westright,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"kD" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"kE" = (
-/obj/effect/floor_decal/borderfloorwhite{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/forensics/sample_kit/powder,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"kF" = (
-/turf/simulated/wall,
-/area/security/forensics)
-"kG" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"pS" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"pT" = (
+/obj/structure/railing,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"pU" = (
/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"kH" = (
+/area/maintenance/cargo)
+"pV" = (
/obj/structure/disposalpipe/tagger/partial{
name = "partial tagger - Sorting Office";
sort_tag = "Sorting Office"
@@ -6231,11 +9575,7 @@
/obj/structure/railing,
/turf/simulated/floor,
/area/maintenance/cargo)
-"kI" = (
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/cargo)
-"kJ" = (
+"pW" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -6243,7 +9583,7 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/cargo)
-"kK" = (
+"pX" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
@@ -6251,7 +9591,7 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/cargo)
-"kL" = (
+"pY" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -6264,370 +9604,178 @@
},
/turf/simulated/floor,
/area/maintenance/cargo)
-"kM" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"kN" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"kO" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"kP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+"pZ" = (
+/obj/structure/table/steel,
+/obj/item/weapon/flame/candle,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"qa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"qb" = (
+/obj/structure/table/rack{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"kQ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"kR" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"kS" = (
-/obj/structure/table/glass,
-/obj/item/weapon/folder/red,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"kT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- name = "Forensics Lab";
- sortType = "Forensics Lab"
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"kU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"kV" = (
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/station/ai)
+"qc" = (
+/turf/simulated/wall/r_wall,
+/area/security/forensics)
+"qd" = (
+/turf/simulated/wall,
+/area/security/forensics)
+"qe" = (
+/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/reinforced/polarized{
- dir = 8
- },
-/obj/structure/window/reinforced/polarized{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/window/reinforced/polarized{
- dir = 10;
- icon_state = "fwindow";
- id = null
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/heads/hos)
-"kW" = (
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/detectives_office)
+"qf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/security/detectives_office)
+"qg" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 8
},
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ icon_state = "borderfloorcorner2_black";
+ dir = 8
+ },
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"qh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
/obj/effect/floor_decal/corner/red/border{
dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/table/steel,
+/obj/item/weapon/storage/box/evidence,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"qi" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"qj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"qk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/security{
+ name = "Security Processing";
+ req_access = list(1)
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"ql" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"kX" = (
-/obj/structure/disposalpipe/segment{
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"qm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"kY" = (
-/obj/machinery/computer/security{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"kZ" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Head of Security"
- },
-/obj/machinery/button/remote/airlock{
- id = "HoSdoor";
- name = "Office Door";
- pixel_x = -36;
- pixel_y = 29
- },
-/obj/machinery/button/windowtint{
- pixel_x = -26;
- pixel_y = 30;
- req_access = list(58)
- },
-/obj/machinery/button/remote/blast_door{
- id = "security_lockdown";
- name = "Brig Lockdown";
- pixel_x = -36;
- pixel_y = 39;
- req_access = list(2)
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"la" = (
-/obj/machinery/computer/secure_data{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hos)
-"lb" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"lc" = (
-/obj/structure/grille,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/reinforced/polarized{
- dir = 8
- },
-/obj/structure/window/reinforced/polarized{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/window/reinforced/polarized{
- dir = 10;
- icon_state = "fwindow";
- id = null
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/heads/hos)
-"ld" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"le" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"lf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"lg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/filingcabinet,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"lh" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"li" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/box/swabs{
- layer = 5
- },
-/obj/item/weapon/folder/yellow{
- pixel_y = -5
- },
-/obj/item/weapon/folder/blue{
- pixel_y = -3
- },
-/obj/item/weapon/folder/red,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"lj" = (
-/obj/machinery/computer/secure_data{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"lk" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/spray/luminol,
-/obj/item/device/uv_light,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"ll" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"qn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/catwalk,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"qo" = (
/obj/structure/cable{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"lm" = (
+/area/maintenance/cargo)
+"qp" = (
/obj/structure/disposalpipe/segment,
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/cargo)
-"ln" = (
+"qq" = (
/obj/structure/catwalk,
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/cargo)
-"lo" = (
+"qr" = (
/turf/simulated/wall,
/area/quartermaster/delivery)
-"lp" = (
+"qs" = (
/obj/machinery/disposal/deliveryChute,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -6638,7 +9786,7 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/quartermaster/delivery)
-"lq" = (
+"qt" = (
/obj/machinery/door/airlock/maintenance/cargo{
req_access = list(50);
req_one_access = list(48)
@@ -6652,55 +9800,172 @@
},
/turf/simulated/floor,
/area/quartermaster/delivery)
-"lr" = (
+"qu" = (
/turf/simulated/wall,
/area/quartermaster/office)
-"ls" = (
-/turf/simulated/mineral/floor/vacuum,
-/area/mine/explored/upper_level)
-"lt" = (
-/obj/machinery/door/window/northright,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/camera/network/security{
- dir = 4
+"qv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"lu" = (
-/obj/structure/table/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/security/forensics)
+"qw" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 9
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/forensics/sample_kit,
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"qx" = (
+/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
-/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice,
-/obj/item/ammo_magazine/clip/c762/practice,
-/obj/item/ammo_magazine/clip/c762/practice,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/ammo_magazine/clip/c762/practice,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"lv" = (
-/obj/machinery/door/window/northright,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"lw" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/corner/white/border{
dir = 1
},
-/obj/item/weapon/gun/energy/laser/practice,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"lx" = (
/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
+/obj/machinery/microscope,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"qy" = (
+/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
-/obj/item/weapon/gun/energy/laser/practice,
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"ly" = (
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/obj/machinery/dnaforensics,
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"qz" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"qA" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24;
+ req_access = list()
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"qB" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"qC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/forensics)
+"qD" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"qE" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"qF" = (
+/obj/structure/table/woodentable,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"qG" = (
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"qH" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"qI" = (
+/obj/structure/flora/pottedplant,
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"qJ" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -6708,159 +9973,185 @@
dir = 8
},
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
},
/obj/effect/floor_decal/corner/red/bordercorner2{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/hallway)
-"lz" = (
-/obj/structure/disposalpipe/sortjunction/flipped{
- name = "Security";
- sortType = "Security"
+"qK" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"lA" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/door/airlock/glass_security{
- name = "Briefing Room";
- req_access = list(1)
+/obj/structure/closet{
+ name = "Evidence Closet"
},
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/briefing_room)
-"lB" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"qL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"lC" = (
-/obj/structure/table/glass,
-/obj/item/weapon/book/manual/security_space_law,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"lD" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"lE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"qM" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"lF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/alarm{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"qN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"lG" = (
+/area/security/security_processing)
+"qO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"qP" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"qQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 10;
+ icon_state = "fwindow";
+ id = "sec_processing"
+ },
+/turf/simulated/floor,
+/area/security/security_processing)
+"qR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"qS" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/red/border{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"lH" = (
-/obj/structure/grille,
-/obj/structure/cable/green,
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/reinforced/polarized{
- dir = 8
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
},
-/obj/structure/window/reinforced/polarized{
- dir = 4
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
},
-/obj/structure/window/reinforced/polarized{
- dir = 10;
- icon_state = "fwindow";
- id = null
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/heads/hos)
-"lI" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"lJ" = (
-/obj/effect/floor_decal/borderfloorblack{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"lK" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 8
},
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"lL" = (
-/obj/machinery/door/window/westleft,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"lM" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"lN" = (
-/obj/effect/floor_decal/borderfloorwhite{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ icon_state = "extinguisher_closed";
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"qT" = (
+/obj/structure/cable/green{
+ icon_state = "32-2"
+ },
+/obj/structure/lattice,
+/obj/structure/railing,
+/turf/simulated/open,
+/area/maintenance/station/sec_upper)
+"qU" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"qV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
dir = 4
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/sterile/latex,
-/obj/item/weapon/reagent_containers/syringe,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"lO" = (
+/obj/structure/railing,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"qW" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -6873,8 +10164,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"lP" = (
+/area/maintenance/cargo)
+"qX" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance/cargo{
@@ -6883,7 +10174,7 @@
},
/turf/simulated/floor,
/area/maintenance/cargo)
-"lQ" = (
+"qY" = (
/obj/machinery/conveyor{
dir = 1;
id = "packageSort1"
@@ -6891,7 +10182,7 @@
/obj/structure/plasticflaps,
/turf/simulated/floor,
/area/quartermaster/delivery)
-"lR" = (
+"qZ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -6904,7 +10195,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"lS" = (
+"ra" = (
/obj/structure/disposalpipe/sortjunction/untagged/flipped{
dir = 1
},
@@ -6921,7 +10212,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"lT" = (
+"rb" = (
/obj/machinery/photocopier,
/obj/effect/floor_decal/borderfloor{
dir = 9
@@ -6931,7 +10222,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"lU" = (
+"rc" = (
/obj/structure/closet/emcloset,
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -6941,42 +10232,140 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"lV" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
+"rd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green,
/obj/structure/cable/green{
icon_state = "0-4"
},
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -28
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
},
-/turf/simulated/floor/tiled,
-/area/security/range)
-"lW" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
},
+/turf/simulated/floor,
+/area/security/forensics)
+"re" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/forensics/sample_kit/powder,
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"rf" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"rg" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"rh" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/window/eastleft,
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"ri" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"rj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"rk" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/turf/simulated/floor/tiled,
-/area/security/range)
-"lX" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"rl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "detdoor";
+ name = "Forensics Lab";
+ req_access = list(4)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"rm" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -6988,68 +10377,182 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/security/range)
-"lY" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"rn" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/security/range)
-"lZ" = (
-/obj/effect/floor_decal/industrial/warning{
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"ro" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"rp" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/turf/simulated/floor/tiled,
-/area/security/range)
-"ma" = (
+/turf/simulated/floor/lino,
+/area/security/detectives_office)
+"rq" = (
+/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/airlock/glass_security{
- name = "Firing Range";
- req_access = list(1)
+ id_tag = "detdoor";
+ name = "Detective";
+ req_access = list(4)
},
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/range)
-"mb" = (
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"rr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ name = "Forensics Lab";
+ sortType = "Forensics Lab"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"rs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"rt" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"ru" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/evidence_storage)
+"rv" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/structure/table/steel,
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"rw" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"rx" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"ry" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"rz" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -7060,346 +10563,111 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"rA" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -28
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"rB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/maintenance/sec{
+ name = "Security Maintenance";
+ req_access = list(1,12)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/security/hallway)
+"rC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"rD" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"rE" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"mc" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"md" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/junction,
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"me" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- name = "Briefing Room";
- req_access = list(1)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/briefing_room)
-"mf" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"mg" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"mh" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"mi" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"mj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"mk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"ml" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"mm" = (
-/obj/structure/filingcabinet,
-/obj/effect/floor_decal/borderfloorblack{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"mn" = (
-/obj/machinery/photocopier,
-/obj/effect/floor_decal/borderfloorblack,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"mo" = (
-/obj/structure/table/woodentable,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/effect/floor_decal/borderfloorblack,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"mp" = (
-/obj/structure/table/woodentable,
-/obj/item/device/radio/off,
-/obj/item/device/megaphone,
-/obj/effect/floor_decal/borderfloorblack,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -25
- },
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Head of Security's Office";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"mq" = (
-/obj/structure/table/woodentable,
-/obj/effect/floor_decal/borderfloorblack,
-/obj/effect/floor_decal/corner/red/border,
-/obj/item/weapon/storage/secure/safe{
- pixel_x = 6;
- pixel_y = -28
- },
-/obj/item/clothing/accessory/permit/gun,
-/obj/item/clothing/accessory/permit/gun,
-/obj/item/clothing/accessory/permit/gun,
-/obj/item/clothing/accessory/permit/gun,
-/obj/item/clothing/accessory/permit/gun,
-/obj/item/weapon/paper{
- desc = "";
- info = "In the event that more weapon permits are needed, please fax Central Command to request more. Please also include a reason for the request. Blank permits will be shipped to cargo for pickup. If long-term permits are desired, please contact your NanoTrasen Employee Representitive for more information.";
- name = "note from CentCom about permits"
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"mr" = (
-/obj/effect/floor_decal/borderfloorblack,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/closet/secure_closet/hos2,
-/obj/item/device/radio/intercom{
- dir = 2;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"ms" = (
-/obj/structure/closet/secure_closet/hos,
-/obj/item/clothing/suit/space/void/security/fluff/hos{
- armor = list("melee" = 70, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 10);
- species_restricted = null
- },
-/obj/item/clothing/head/helmet/space/void/security/fluff/hos{
- armor = list("melee" = 70, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 10);
- species_restricted = null
- },
-/obj/effect/floor_decal/borderfloorblack{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/item/device/radio/intercom/department/security{
- dir = 2;
- icon_state = "secintercom";
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"mt" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"mu" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"mv" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"mw" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"mx" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/table/reinforced,
-/obj/item/weapon/hand_labeler,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"my" = (
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/dnaforensics,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"mz" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloorwhite,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/chem_master,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"mA" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/structure/table/reinforced,
-/obj/item/device/mass_spectrometer/adv,
-/obj/item/device/reagent_scanner,
-/turf/simulated/floor/tiled/white,
-/area/security/forensics)
-"mB" = (
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"rF" = (
/obj/structure/cable{
icon_state = "1-2"
},
/obj/random/junk,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"mC" = (
+/area/maintenance/cargo)
+"rG" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"rH" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"mD" = (
+/area/maintenance/cargo)
+"rI" = (
/obj/structure/closet,
/obj/random/maintenance/cargo,
/obj/random/maintenance/clean,
@@ -7408,15 +10676,15 @@
/obj/random/toy,
/obj/random/maintenance/clean,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"mE" = (
+/area/maintenance/cargo)
+"rJ" = (
/obj/machinery/conveyor{
dir = 1;
id = "packageSort1"
},
/turf/simulated/floor,
/area/quartermaster/delivery)
-"mF" = (
+"rK" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
@@ -7434,7 +10702,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"mG" = (
+"rL" = (
/obj/structure/disposalpipe/sortjunction/flipped{
dir = 1;
name = "Sorting Office";
@@ -7453,7 +10721,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"mH" = (
+"rM" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -7476,7 +10744,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"mI" = (
+"rN" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -7500,7 +10768,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"mJ" = (
+"rO" = (
/obj/machinery/door/airlock/glass_mining{
name = "Delivery Office";
req_access = list(50);
@@ -7525,7 +10793,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/delivery)
-"mK" = (
+"rP" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -7549,7 +10817,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"mL" = (
+"rQ" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -7566,7 +10834,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"mM" = (
+"rR" = (
/obj/machinery/light{
dir = 1
},
@@ -7583,7 +10851,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"mN" = (
+"rS" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -7597,7 +10865,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"mO" = (
+"rT" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -7616,7 +10884,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"mP" = (
+"rU" = (
/obj/machinery/door/airlock/glass_mining{
id_tag = "cargodoor";
name = "Cargo Office";
@@ -7631,7 +10899,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/office)
-"mQ" = (
+"rV" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -7651,7 +10919,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"mR" = (
+"rW" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
@@ -7660,7 +10928,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"mS" = (
+"rX" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
@@ -7669,7 +10937,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"mT" = (
+"rY" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/machinery/camera/network/cargo,
/obj/effect/floor_decal/borderfloor{
@@ -7680,131 +10948,248 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"mU" = (
+"rZ" = (
/obj/structure/noticeboard,
/turf/simulated/wall,
/area/quartermaster/office)
-"mV" = (
+"sa" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/spray/luminol,
+/obj/item/device/uv_light,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"sb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"sc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/yellow{
+ pixel_y = -5
+ },
+/obj/item/weapon/folder/blue{
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/red,
+/obj/item/weapon/storage/box/swabs{
+ layer = 5
+ },
+/obj/item/weapon/hand_labeler,
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"sd" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/closet{
+ name = "Forensics Gear"
+ },
+/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/storage/box/evidence,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/briefcase/crimekit,
+/obj/item/weapon/storage/briefcase/crimekit,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"se" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"sf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
/obj/machinery/alarm{
- dir = 4;
+ dir = 8;
icon_state = "alarm0";
- pixel_x = -22;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"sg" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"sh" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"si" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp/green,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"sj" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/handcuffs,
+/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"sk" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"sl" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"sm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
pixel_y = 0
},
/turf/simulated/floor/tiled,
-/area/security/range)
-"mW" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/range)
-"mX" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/security/range)
-"mY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/range)
-"mZ" = (
-/turf/simulated/floor/tiled,
-/area/security/range)
-"na" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/range)
-"nb" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
/area/security/hallway)
-"nc" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 6
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
+"sn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"nd" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
+/obj/machinery/door/airlock/security{
+ name = "Security Processing";
+ req_access = list(1)
},
/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"ne" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nf" = (
-/obj/machinery/button/windowtint{
- id = "sec_bief";
- pixel_x = -7;
- pixel_y = -26
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"ng" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
+/area/security/security_processing)
+"so" = (
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nh" = (
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"sp" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/station/upper)
+"sq" = (
+/turf/simulated/wall,
+/area/hallway/station/upper)
+"sr" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -7820,15 +11205,27 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"ni" = (
+/area/maintenance/cargo)
+"ss" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
- icon_state = "4-8"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"nj" = (
+/area/maintenance/cargo)
+"st" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/cargo)
+"su" = (
/obj/structure/closet/crate,
/obj/random/maintenance/cargo,
/obj/random/maintenance/cargo,
@@ -7838,15 +11235,15 @@
/obj/effect/floor_decal/rust,
/obj/random/maintenance/clean,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"nk" = (
+/area/maintenance/cargo)
+"sv" = (
/obj/item/weapon/stool,
/obj/effect/floor_decal/industrial/warning{
dir = 9
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/delivery)
-"nl" = (
+"sw" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -7856,20 +11253,20 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"nm" = (
+"sx" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"nn" = (
+"sy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"no" = (
+"sz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -7881,7 +11278,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"np" = (
+"sA" = (
/obj/machinery/door/airlock/glass_mining{
name = "Delivery Office";
req_access = list(50);
@@ -7893,7 +11290,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/delivery)
-"nq" = (
+"sB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -7910,7 +11307,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"nr" = (
+"sC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -7927,7 +11324,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"ns" = (
+"sD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -7945,7 +11342,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"nt" = (
+"sE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -7962,7 +11359,7 @@
/obj/effect/floor_decal/corner/brown/bordercorner2,
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"nu" = (
+"sF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -7982,7 +11379,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"nv" = (
+"sG" = (
/obj/machinery/door/airlock/glass_mining{
id_tag = "cargodoor";
name = "Cargo Office";
@@ -7998,7 +11395,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/office)
-"nw" = (
+"sH" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -8021,17 +11418,17 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"nx" = (
+"sI" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"ny" = (
+"sJ" = (
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"nz" = (
+"sK" = (
/obj/structure/bed/chair/comfy/brown,
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -8041,323 +11438,459 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"nA" = (
-/obj/structure/lattice,
+"sL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
/obj/structure/grille,
-/turf/space,
-/area/space)
-"nB" = (
-/obj/structure/lattice,
-/turf/space,
-/area/space)
-"nC" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = -28
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/item/clothing/glasses/gglasses{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/glasses/gglasses,
-/turf/simulated/floor/tiled,
-/area/security/range)
-"nD" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = -28
- },
-/obj/item/clothing/ears/earmuffs{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/ears/earmuffs,
-/turf/simulated/floor/tiled,
-/area/security/range)
-"nE" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/box/blanks{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/weapon/storage/box/blanks,
-/obj/item/ammo_magazine/clip/c762/practice,
-/obj/item/ammo_magazine/clip/c762/practice,
-/turf/simulated/floor/tiled,
-/area/security/range)
-"nF" = (
-/obj/structure/table/reinforced,
-/obj/item/ammo_magazine/m9mmt/practice,
-/obj/item/ammo_magazine/m9mmt/practice,
-/obj/item/ammo_magazine/m45/practice,
-/obj/item/ammo_magazine/m45/practice,
-/obj/item/ammo_magazine/m45/practice,
-/obj/item/ammo_magazine/m45/practice,
-/obj/item/ammo_magazine/m45/practice,
-/obj/item/ammo_magazine/m45/practice,
-/obj/item/device/radio/intercom{
- dir = 2;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled,
-/area/security/range)
-"nG" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/box/flashbangs{
- pixel_x = -2;
- pixel_y = -2
- },
-/turf/simulated/floor/tiled,
-/area/security/range)
-"nH" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
+/turf/simulated/floor,
+/area/security/forensics)
+"sM" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/security/range)
-"nI" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 10
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"sN" = (
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"sO" = (
+/obj/machinery/door/window/eastright,
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"sP" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"nJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"nK" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/hallway)
-"nL" = (
-/obj/structure/closet/wardrobe/red,
-/obj/effect/floor_decal/borderfloor{
- dir = 10
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"sQ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
},
/obj/effect/floor_decal/corner/red/border{
- dir = 10
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nM" = (
-/obj/structure/closet/wardrobe/red,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"sR" = (
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"sS" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Detective"
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"sT" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"sU" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nN" = (
-/obj/machinery/photocopier,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nO" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/donut,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nP" = (
-/obj/structure/table/steel,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = -28
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/recharger,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nQ" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/structure/table/steel,
-/obj/item/weapon/book/codex,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nR" = (
-/obj/machinery/vending/snack,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nS" = (
-/obj/machinery/vending/cola,
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/camera/network/security{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nT" = (
-/obj/structure/table/steel,
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = -28
- },
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/item/device/radio{
- pixel_x = -4
- },
-/obj/item/device/radio{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nU" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/obj/item/device/radio/intercom{
- dir = 2;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nV" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/obj/structure/bed/chair/office/dark{
dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/obj/effect/landmark/start{
+ name = "Detective"
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"sV" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nW" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/security/hallway)
+"sW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/item/device/radio/intercom/department/security{
- dir = 2;
- icon_state = "secintercom";
- pixel_y = -24
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nX" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"nY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/obj/machinery/door/blast/regular{
density = 0;
- dir = 4;
+ dir = 1;
icon_state = "pdoor0";
id = "security_lockdown";
name = "Security Blast Doors";
opacity = 0
},
-/obj/machinery/door/airlock/maintenance/sec{
- name = "Security Maintenance";
- req_access = list(1,12)
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/recharger,
+/obj/effect/floor_decal/borderfloor/shifted,
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border/shifted,
+/obj/effect/floor_decal/corner/red/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"sX" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"sY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"sZ" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"ta" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor,
-/area/security/briefing_room)
-"nZ" = (
/obj/machinery/alarm{
pixel_y = 22
},
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"tb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/security,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"tc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 10;
+ icon_state = "fwindow";
+ id = "lawyer_blast"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/lawoffice)
+"td" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"te" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"tf" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"tg" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ icon_state = "extinguisher_closed";
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"th" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ icon_state = "bordercolorcorner";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"ti" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/simulated/floor,
-/area/maintenance/station/elevator)
-"oa" = (
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"tj" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4;
+ pixel_x = -16
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4;
+ pixel_x = -16
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/table/steel,
+/obj/item/roller,
+/obj/item/weapon/storage/box/autoinjectors,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32;
+ pixel_y = -9
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32;
+ pixel_y = 2
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"tk" = (
/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"ob" = (
+"tl" = (
/turf/simulated/wall/r_wall,
/area/maintenance/station/elevator)
-"oc" = (
+"tm" = (
/obj/machinery/atmospherics/pipe/cap/hidden,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/station/elevator)
-"od" = (
+"tn" = (
/turf/simulated/shuttle/wall/voidcraft/green{
hard_corner = 1
},
/area/hallway/station/upper)
-"oe" = (
+"to" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -8383,7 +11916,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"of" = (
+"tp" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -8401,7 +11934,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"og" = (
+"tq" = (
/obj/effect/floor_decal/borderfloor{
dir = 5
},
@@ -8417,7 +11950,7 @@
/obj/structure/flora/pottedplant/stoutbush,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"oh" = (
+"tr" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 6
},
@@ -8440,7 +11973,27 @@
/obj/machinery/vending/cola,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"oi" = (
+"ts" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"tt" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -8448,33 +12001,36 @@
},
/obj/machinery/door/airlock/maintenance/common,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"oj" = (
+/area/maintenance/cargo)
+"tu" = (
/obj/machinery/conveyor{
dir = 1;
id = "packageSort1"
},
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/quartermaster/delivery)
-"ok" = (
+"tv" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/delivery)
-"ol" = (
+"tw" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"om" = (
+"tx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"on" = (
+"ty" = (
/obj/structure/table/steel,
/obj/item/weapon/storage/box,
/obj/item/weapon/storage/box,
@@ -8497,7 +12053,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"oo" = (
+"tz" = (
/obj/machinery/door/airlock/glass_mining{
id_tag = "cargodoor";
name = "Cargo Office";
@@ -8509,15 +12065,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/office)
-"op" = (
+"tA" = (
/obj/structure/sign/department/cargo,
/turf/simulated/wall,
/area/quartermaster/office)
-"oq" = (
+"tB" = (
/obj/machinery/status_display/supply_display,
/turf/simulated/wall,
/area/quartermaster/office)
-"or" = (
+"tC" = (
/obj/item/weapon/stamp/denied{
pixel_x = 4;
pixel_y = -2
@@ -8537,20 +12093,20 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"os" = (
+"tD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"ot" = (
+"tE" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"ou" = (
+"tF" = (
/obj/structure/table/standard,
/obj/item/weapon/material/ashtray/glass,
/obj/machinery/newscaster{
@@ -8566,114 +12122,334 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"ov" = (
+"tG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
/obj/structure/grille,
/obj/structure/window/reinforced/full,
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/hallway)
-"ow" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- id_tag = "BrigFoyer";
- layer = 2.8;
- name = "Security Wing";
- req_access = list(1)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/hallway)
-"ox" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/glass_security{
- id_tag = "BrigFoyer";
- layer = 2.8;
- name = "Security Wing";
- req_access = list(1)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/hallway)
-"oy" = (
-/obj/structure/symbol/da,
-/turf/simulated/wall/r_wall,
-/area/security/briefing_room)
-"oz" = (
-/obj/structure/grille,
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/structure/cable/green,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized{
- dir = 10;
- icon_state = "fwindow";
- id = "sec_bief"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/briefing_room)
-"oA" = (
-/obj/structure/grille,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced/polarized{
- dir = 10;
- icon_state = "fwindow";
- id = "sec_bief"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/security/briefing_room)
-"oB" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/security{
- name = "Briefing Room";
- req_access = list(1)
- },
-/turf/simulated/floor/tiled/steel_grid,
-/area/security/briefing_room)
-"oC" = (
-/obj/structure/disposalpipe/segment,
-/obj/random/trash_pile,
/turf/simulated/floor,
-/area/maintenance/station/elevator)
-"oD" = (
+/area/security/forensics)
+"tH" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 10
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/mass_spectrometer/adv,
+/obj/item/device/reagent_scanner,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"tI" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/white/border,
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"tJ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/white/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 6
+ },
+/obj/structure/filingcabinet,
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"tK" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"tL" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"tM" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/forensics)
+"tN" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/item/weapon/gun/energy/taser,
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"tO" = (
+/obj/machinery/computer/security/wooden_tv,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"tP" = (
+/obj/structure/table/woodentable,
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"tQ" = (
+/obj/structure/table/woodentable,
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/machinery/camera/network/security{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"tR" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -28
+ },
+/obj/structure/cable/green,
+/obj/machinery/computer/security/wooden_tv,
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"tS" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"tT" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"tU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"tV" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"tW" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"tX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"tY" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"tZ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"ua" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"ub" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"uc" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"ud" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"ue" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4;
+ pixel_x = -16
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4;
+ pixel_x = -16
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/table/steel,
+/obj/item/bodybag/cryobag{
+ pixel_x = 6
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32;
+ pixel_y = -9
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"uf" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -8686,9 +12462,10 @@
dir = 6
},
/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"oE" = (
+"ug" = (
/obj/machinery/door/airlock/maintenance/engi,
/obj/structure/cable{
icon_state = "4-8"
@@ -8702,7 +12479,7 @@
},
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"oF" = (
+"uh" = (
/obj/structure/cable{
icon_state = "2-8"
},
@@ -8716,21 +12493,72 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/station/elevator)
-"oG" = (
+"ui" = (
/turf/simulated/floor/holofloor/tiled/dark,
/area/hallway/station/upper)
-"oH" = (
+"uj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"oI" = (
+"uk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"oL" = (
+"ul" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"um" = (
+/turf/simulated/floor/wood,
+/area/hallway/station/upper)
+"un" = (
+/obj/structure/flora/pottedplant/flower,
+/turf/simulated/floor/wood,
+/area/hallway/station/upper)
+"uo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/floodlight,
+/turf/simulated/floor,
+/area/storage/emergency_storage/emergency3)
+"up" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor,
+/area/storage/emergency_storage/emergency3)
+"uq" = (
/obj/structure/table/rack{
dir = 1
},
@@ -8752,40 +12580,14 @@
},
/turf/simulated/floor/plating,
/area/storage/emergency_storage/emergency3)
-"oM" = (
-/obj/structure/flora/pottedplant/flower,
-/turf/simulated/floor/wood,
-/area/hallway/station/upper)
-"oN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+"ur" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort1"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/floodlight,
-/turf/simulated/floor,
-/area/storage/emergency_storage/emergency3)
-"oO" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor,
-/area/storage/emergency_storage/emergency3)
-"oQ" = (
+/turf/simulated/floor/plating,
+/area/quartermaster/delivery)
+"us" = (
/obj/machinery/conveyor_switch/oneway{
id = "packageSort1"
},
@@ -8794,14 +12596,14 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/delivery)
-"oR" = (
+"ut" = (
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"oS" = (
+"uu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"oT" = (
+"uv" = (
/obj/structure/table/steel,
/obj/item/weapon/wrapping_paper,
/obj/item/weapon/wrapping_paper,
@@ -8822,13 +12624,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"oU" = (
+"uw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/quartermaster/delivery)
-"oV" = (
+"ux" = (
/obj/machinery/computer/guestpass{
pixel_y = 32
},
@@ -8840,7 +12642,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"oW" = (
+"uy" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -8862,7 +12664,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"oX" = (
+"uz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -8873,7 +12675,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"oY" = (
+"uA" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -8898,7 +12700,7 @@
/obj/item/weapon/pen,
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"oZ" = (
+"uB" = (
/obj/machinery/computer/ordercomp,
/obj/effect/floor_decal/borderfloor{
dir = 5
@@ -8914,7 +12716,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"pa" = (
+"uC" = (
/obj/item/weapon/paper_bin{
pixel_x = -3;
pixel_y = 7
@@ -8942,12 +12744,12 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"pb" = (
+"uD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"pc" = (
+"uE" = (
/obj/structure/bed/chair/comfy/brown{
dir = 1
},
@@ -8963,288 +12765,295 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"pd" = (
+"uF" = (
+/obj/structure/sign/warning/secure_area,
/turf/simulated/wall/r_wall,
-/area/security/lobby)
-"pe" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
+/area/security/forensics)
+"uG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
},
+/obj/structure/cable/green,
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-4"
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pg" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"ph" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/obj/machinery/camera/network/security,
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pi" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/bed/chair,
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pj" = (
-/obj/structure/bed/chair,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/table/standard,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/security_space_law,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/turf/simulated/floor,
+/area/security/forensics)
+"uH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/turf/simulated/floor,
+/area/security/forensics)
+"uI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/turf/simulated/floor,
+/area/security/forensics)
+"uJ" = (
+/turf/simulated/wall/r_wall,
+/area/security/detectives_office)
+"uK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 10;
+ icon_state = "fwindow";
+ id = "lawyer_blast"
+ },
+/turf/simulated/floor,
+/area/lawoffice)
+"uL" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d2 = 8;
icon_state = "0-8"
},
/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
+ icon_state = "0-4"
},
-/turf/simulated/floor/plating,
-/area/security/lobby)
-"pm" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 9
- },
-/obj/effect/floor_decal/borderfloor/corner2{
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
dir = 10;
- icon_state = "borderfloorcorner2";
- pixel_x = 0
+ icon_state = "fwindow";
+ id = "lawyer_blast"
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 10
- },
-/obj/machinery/computer/security,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pn" = (
-/obj/structure/table/steel,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"po" = (
-/obj/structure/table/steel,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/status_display{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pp" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/structure/closet{
- name = "Lost and Found"
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pq" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/machinery/camera/network/security,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pr" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"ps" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pt" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- pixel_y = 24;
- req_access = list()
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pu" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/structure/table/steel,
-/obj/item/weapon/book/manual/security_space_law,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pv" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/random/maintenance/security,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/clean,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/weapon/storage/box/lights/mixed,
/turf/simulated/floor,
-/area/maintenance/station/elevator)
-"pw" = (
+/area/lawoffice)
+"uM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/security{
+ name = "Internal Affairs";
+ req_access = list(38);
+ req_one_access = newlist()
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"uN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 10;
+ icon_state = "fwindow";
+ id = "lawyer_blast"
+ },
+/turf/simulated/floor,
+/area/lawoffice)
+"uO" = (
+/turf/simulated/wall/r_wall,
+/area/lawoffice)
+"uP" = (
+/turf/simulated/wall/r_wall,
+/area/security/lobby)
+"uQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/lobby)
+"uR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Front Desk";
+ req_access = list(1)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"uS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/lobby)
+"uT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/hallway)
+"uU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/security/hallway)
+"uV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/hallway)
+"uW" = (
/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"px" = (
+"uX" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/zpipe/down{
dir = 1
@@ -9261,16 +13070,20 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/open,
/area/maintenance/station/elevator)
-"py" = (
+"uY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"pB" = (
+"uZ" = (
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/wood,
+/area/hallway/station/upper)
+"va" = (
/obj/structure/bed/chair/comfy/brown,
/turf/simulated/floor/wood,
/area/hallway/station/upper)
-"pD" = (
+"vb" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -9278,7 +13091,11 @@
/obj/machinery/space_heater,
/turf/simulated/floor,
/area/storage/emergency_storage/emergency3)
-"pE" = (
+"vc" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/storage/emergency_storage/emergency3)
+"vd" = (
/obj/structure/closet/crate,
/obj/random/junk,
/obj/random/maintenance/medical,
@@ -9297,7 +13114,7 @@
/obj/item/device/t_scanner,
/turf/simulated/floor,
/area/storage/emergency_storage/emergency3)
-"pF" = (
+"ve" = (
/obj/machinery/conveyor{
dir = 1;
id = "packageSort1"
@@ -9305,7 +13122,7 @@
/obj/structure/plasticflaps,
/turf/simulated/floor/plating,
/area/quartermaster/delivery)
-"pG" = (
+"vf" = (
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
@@ -9327,13 +13144,13 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"pH" = (
+"vg" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"pI" = (
+"vh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -9342,7 +13159,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"pJ" = (
+"vi" = (
/obj/structure/table/steel,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -9358,7 +13175,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"pK" = (
+"vj" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
@@ -9376,19 +13193,19 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"pL" = (
+"vk" = (
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"pM" = (
+"vl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"pN" = (
+"vm" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"pO" = (
+"vn" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor/border_only,
/obj/machinery/door/window/northright{
@@ -9398,7 +13215,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"pP" = (
+"vo" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
@@ -9418,7 +13235,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"pQ" = (
+"vp" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j1s";
@@ -9428,13 +13245,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"pR" = (
+"vq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"pS" = (
+"vr" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -9450,93 +13267,289 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"pT" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
+"vs" = (
+/turf/simulated/floor/airless,
+/area/mine/explored/upper_level)
+"vt" = (
+/turf/simulated/mineral/floor/vacuum,
+/area/mine/explored/upper_level)
+"vu" = (
+/turf/simulated/wall,
+/area/lawoffice)
+"vv" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 9
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 8
- },
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pV" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pW" = (
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"pY" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+/obj/structure/closet/lawcloset,
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals6,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"vw" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 1
+ },
+/obj/structure/closet,
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/device/camera{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/device/camera{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/weapon/storage/secure/briefcase,
+/obj/item/weapon/storage/secure/briefcase,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"vx" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 1
+ },
+/obj/structure/bookcase,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/standard_operating_procedure,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/command_guide,
+/obj/item/weapon/book/manual/command_guide,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"vy" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Internal Affairs"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"vz" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"vA" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/papershredder,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"vB" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"vC" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"vD" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 5
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"vE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/recharge_station,
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ icon_state = "extinguisher_closed";
+ pixel_x = -30
+ },
/turf/simulated/floor/tiled,
/area/security/lobby)
-"pZ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor/glass,
+"vF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/door/window/westright,
-/obj/machinery/door/window/brigdoor/eastleft,
-/turf/simulated/floor/tiled/monotile,
-/area/security/lobby)
-"qa" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
- },
-/obj/machinery/button/remote/airlock{
- desc = "A remote control switch for the brig foyer.";
- id = "BrigFoyer";
- name = "Brig Foyer Doors";
- pixel_x = -25;
- pixel_y = -5;
- req_access = list(63)
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/lobby)
-"qb" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"qc" = (
-/obj/structure/table/steel,
-/obj/machinery/recharger,
+"vG" = (
/obj/effect/floor_decal/borderfloor{
- dir = 4
+ dir = 5
},
/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
dir = 4
},
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/computer/security,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"vH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/structure/bed/chair,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ icon_state = "extinguisher_closed";
+ pixel_x = -30
+ },
/turf/simulated/floor/tiled,
/area/security/lobby)
-"qd" = (
+"vI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"vJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"vK" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"vL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"vM" = (
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/super;
dir = 8;
@@ -9547,11 +13560,15 @@
icon_state = "0-4";
d2 = 4
},
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
+/obj/random/trash_pile,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"qe" = (
+"vN" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -9561,17 +13578,21 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"qf" = (
+"vO" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/station/elevator)
-"qi" = (
+"vP" = (
/obj/structure/table/woodentable,
/turf/simulated/floor/wood,
/area/hallway/station/upper)
-"qj" = (
+"vQ" = (
/obj/structure/table/woodentable,
/obj/item/device/radio/intercom{
dir = 4;
@@ -9579,23 +13600,25 @@
},
/turf/simulated/floor/wood,
/area/hallway/station/upper)
-"qk" = (
+"vR" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/storage/emergency_storage/emergency3)
+"vS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/obj/machinery/light/small,
/turf/simulated/floor,
/area/storage/emergency_storage/emergency3)
-"ql" = (
-/obj/structure/closet,
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/obj/random/drinkbottle,
-/obj/random/tool,
-/obj/random/maintenance/cargo,
+"vT" = (
/obj/effect/floor_decal/rust,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"qm" = (
+/area/storage/emergency_storage/emergency3)
+"vU" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/disposaloutlet{
dir = 1
@@ -9607,7 +13630,7 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/delivery)
-"qn" = (
+"vV" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
@@ -9617,7 +13640,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"qo" = (
+"vW" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
@@ -9626,7 +13649,7 @@
/obj/effect/floor_decal/corner/brown/bordercorner2,
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"qp" = (
+"vX" = (
/obj/structure/bed/chair,
/obj/effect/landmark/start{
name = "Cargo Technician"
@@ -9637,7 +13660,7 @@
/obj/effect/floor_decal/corner/brown/border,
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"qq" = (
+"vY" = (
/obj/structure/table/steel,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -9655,17 +13678,17 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"qr" = (
+"vZ" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"qs" = (
+"wa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/quartermaster/office)
-"qt" = (
+"wb" = (
/obj/machinery/computer/supplycomp{
dir = 1
},
@@ -9682,11 +13705,11 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"qu" = (
+"wc" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"qv" = (
+"wd" = (
/obj/machinery/autolathe,
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -9699,161 +13722,131 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"qw" = (
+"we" = (
/turf/space/cracked_asteroid,
/area/mine/explored/upper_level)
-"qx" = (
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault Exterior North";
- dir = 1
+"wf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 10;
+ icon_state = "fwindow";
+ id = "lawyer_blast"
},
-/turf/simulated/mineral/floor/vacuum,
-/area/mine/explored/upper_level)
-"qy" = (
+/turf/simulated/floor,
+/area/lawoffice)
+"wg" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"wh" = (
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"wi" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ icon_state = "extinguisher_closed";
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"wj" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/red/border{
dir = 8
},
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27;
- pixel_y = 0
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28
},
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/photocopier,
/turf/simulated/floor/tiled,
/area/security/lobby)
-"qz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+"wk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"qA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"qB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"qC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"qD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"qE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"qF" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/door/window/westleft,
-/obj/machinery/door/window/brigdoor/eastright,
-/turf/simulated/floor/tiled/monotile,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
/area/security/lobby)
-"qG" = (
+"wl" = (
/obj/structure/bed/chair/office/dark{
- dir = 8
+ dir = 4
},
/obj/effect/landmark/start{
name = "Security Officer"
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"wm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/eastright{
dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
+/obj/machinery/door/window/westleft{
+ dir = 4
},
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"wn" = (
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"wo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"wp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"wq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ pixel_x = 24
+ },
/turf/simulated/floor/tiled,
/area/security/lobby)
-"qH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"qI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"qJ" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"qK" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
- },
-/obj/machinery/photocopier,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"qL" = (
+"wr" = (
/obj/structure/disposalpipe/segment,
/obj/structure/closet/crate,
/obj/random/maintenance/cargo,
@@ -9864,9 +13857,10 @@
/obj/random/maintenance/clean,
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
+/obj/item/weapon/storage/box/lights/mixed,
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"qM" = (
+"ws" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -9879,7 +13873,7 @@
},
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"qN" = (
+"wt" = (
/obj/machinery/door/airlock/maintenance/engi,
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment{
@@ -9887,7 +13881,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/station/elevator)
-"qO" = (
+"wu" = (
/obj/structure/disposalpipe/down{
dir = 8
},
@@ -9895,35 +13889,20 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/open,
/area/maintenance/station/elevator)
-"qP" = (
+"wv" = (
/obj/structure/sign/deck3,
/turf/simulated/shuttle/wall/voidcraft/green{
hard_corner = 1
},
/area/hallway/station/upper)
-"qQ" = (
+"ww" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"qR" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"qS" = (
+"wx" = (
/obj/structure/sign/directions/cargo{
dir = 4
},
@@ -9936,13 +13915,13 @@
},
/turf/simulated/wall,
/area/hallway/station/upper)
-"qT" = (
+"wy" = (
/obj/structure/bed/chair/comfy/brown{
dir = 1
},
/turf/simulated/floor/wood,
/area/hallway/station/upper)
-"qU" = (
+"wz" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -9953,15 +13932,15 @@
},
/turf/simulated/floor,
/area/storage/emergency_storage/emergency3)
-"qV" = (
+"wA" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/wall,
/area/quartermaster/delivery)
-"qW" = (
+"wB" = (
/obj/structure/sign/department/mail,
/turf/simulated/wall,
/area/quartermaster/delivery)
-"qX" = (
+"wC" = (
/obj/machinery/door/airlock/glass_mining{
name = "Delivery Office";
req_access = list(50);
@@ -9971,13 +13950,13 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/delivery)
-"qY" = (
+"wD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/border_only,
/turf/simulated/floor/plating,
/area/quartermaster/delivery)
-"qZ" = (
+"wE" = (
/obj/structure/table/steel_reinforced,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/pen{
@@ -9993,7 +13972,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/quartermaster/delivery)
-"ra" = (
+"wF" = (
/obj/machinery/newscaster{
layer = 3.3;
pixel_x = -27;
@@ -10019,13 +13998,13 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"rb" = (
+"wG" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"rc" = (
+"wH" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -10035,13 +14014,13 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"rd" = (
+"wI" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"re" = (
+"wJ" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/machinery/light{
icon_state = "tube1";
@@ -10066,7 +14045,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"rf" = (
+"wK" = (
/obj/structure/table/standard,
/obj/fiftyspawner/steel,
/obj/item/device/multitool,
@@ -10083,148 +14062,163 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"rg" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+"wL" = (
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Vault Exterior North";
+ dir = 1
},
/turf/simulated/mineral/floor/vacuum,
-/area/security/nuke_storage)
-"rh" = (
-/obj/structure/sign/warning/secure_area,
-/turf/simulated/wall/r_wall,
-/area/security/nuke_storage)
-"ri" = (
-/turf/simulated/wall/r_wall,
-/area/security/nuke_storage)
-"rj" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
+/area/mine/explored/upper_level)
+"wM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/reinforced,
+/obj/item/device/flashlight/lamp,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"wN" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
},
-/turf/simulated/mineral/floor/vacuum,
-/area/security/nuke_storage)
-"rk" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"wO" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
},
/obj/effect/floor_decal/corner/red/border{
dir = 8
},
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
+/obj/machinery/papershredder,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"rl" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+"wP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/lobby)
-"rm" = (
+"wQ" = (
/obj/effect/floor_decal/borderfloor/corner2{
dir = 6
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 6
- },
/obj/effect/floor_decal/borderfloor/corner2{
dir = 5
},
/obj/effect/floor_decal/corner/red/bordercorner2{
dir = 5
},
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
/turf/simulated/floor/tiled,
/area/security/lobby)
-"rn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green,
-/turf/simulated/floor/plating,
-/area/security/lobby)
-"ro" = (
+"wR" = (
+/obj/effect/floor_decal/borderfloor/shifted,
+/obj/effect/floor_decal/corner/red/border/shifted,
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 10
+ },
/obj/machinery/computer/security{
dir = 1
},
+/turf/simulated/floor/tiled,
+/area/security/observation)
+"wS" = (
/obj/effect/floor_decal/borderfloor/corner2{
- dir = 10
+ dir = 8
},
/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10;
+ icon_state = "borderfloorcorner2";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
dir = 8
},
/obj/effect/floor_decal/corner/red/bordercorner2{
dir = 10
},
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 8
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"wT" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/cups,
+/obj/item/weapon/storage/box/cups{
+ pixel_x = 4;
+ pixel_y = 4
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"rp" = (
-/obj/structure/table/steel,
+"wU" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
/turf/simulated/floor/tiled,
/area/security/lobby)
-"rq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"rr" = (
-/obj/structure/table/steel,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"rs" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"rt" = (
-/obj/structure/table/steel,
-/obj/item/weapon/storage/box/donut,
-/obj/effect/floor_decal/borderfloor{
+"wV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
dir = 4
},
-/obj/effect/floor_decal/corner/red/border{
- dir = 4
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"ru" = (
+"wW" = (
/obj/structure/reagent_dispensers/watertank,
/obj/structure/railing,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"rv" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/catwalk,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor,
-/area/maintenance/station/elevator)
-"rw" = (
+"wX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/turf/simulated/floor/plating,
/area/maintenance/station/elevator)
-"rx" = (
+"wY" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"ry" = (
+"wZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -10232,7 +14226,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"rz" = (
+"xa" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -10248,7 +14242,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"rA" = (
+"xb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -10264,7 +14258,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"rD" = (
+"xc" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
},
@@ -10284,7 +14278,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"rE" = (
+"xd" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -10309,7 +14303,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"rF" = (
+"xe" = (
/obj/machinery/status_display{
pixel_y = 30
},
@@ -10334,7 +14328,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"rG" = (
+"xf" = (
/obj/machinery/atm{
pixel_y = 30
},
@@ -10360,7 +14354,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"rH" = (
+"xg" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -10373,7 +14367,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"rI" = (
+"xh" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -10390,7 +14384,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"rJ" = (
+"xi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -10418,7 +14412,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"rK" = (
+"xj" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -10437,7 +14431,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"rL" = (
+"xk" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -10462,7 +14456,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"rM" = (
+"xl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/borderfloor{
@@ -10477,7 +14471,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"rN" = (
+"xm" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -10490,7 +14484,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"rO" = (
+"xn" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 1
},
@@ -10505,14 +14499,14 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"rP" = (
+"xo" = (
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"rQ" = (
+"xp" = (
/obj/machinery/door/airlock/glass_mining{
id_tag = "cargodoor";
name = "Cargo Office";
@@ -10522,7 +14516,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/office)
-"rR" = (
+"xq" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -10539,7 +14533,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"rS" = (
+"xr" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -10547,13 +14541,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"rT" = (
+"xs" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"rU" = (
+"xt" = (
/obj/structure/table/standard,
/obj/item/weapon/folder/yellow,
/obj/machinery/light{
@@ -10573,171 +14567,223 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"rV" = (
-/obj/effect/floor_decal/borderfloor{
+"xu" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/space,
+/area/space)
+"xv" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall,
+/area/security/nuke_storage)
+"xw" = (
+/turf/simulated/wall/r_wall,
+/area/security/nuke_storage)
+"xx" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/mineral/floor/vacuum,
+/area/mine/explored/upper_level)
+"xy" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder{
+ pixel_x = -4
+ },
+/obj/item/weapon/folder/blue{
+ pixel_x = 5
+ },
+/obj/item/weapon/folder/red{
+ pixel_y = 3
+ },
+/obj/item/weapon/folder/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"xz" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"xA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"xB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"xC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"xD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"xE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"xF" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"xG" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder{
+ pixel_x = -4
+ },
+/obj/item/weapon/folder/blue{
+ pixel_x = 5
+ },
+/obj/item/weapon/folder/red{
+ pixel_y = 3
+ },
+/obj/item/weapon/folder/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"xH" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
/obj/effect/floor_decal/corner/red/border{
- dir = 10
+ dir = 8
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/obj/machinery/computer/guestpass{
+/obj/structure/table/reinforced,
+/obj/structure/disposalpipe/segment{
dir = 4;
- pixel_x = -28;
+ icon_state = "pipe-c"
+ },
+/obj/item/device/radio{
+ pixel_x = -4
+ },
+/obj/item/device/radio{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
pixel_y = 0
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"rW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 8
+"xI" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"rX" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals6,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"rY" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/obj/structure/flora/pottedplant,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"rZ" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/light,
-/obj/structure/bed/chair{
+"xJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"sa" = (
-/obj/structure/bed/chair{
- dir = 1
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
},
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"sb" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/eastleft{
dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals6,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+/obj/machinery/door/window/westright{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"sc" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/glass_security{
- name = "Front Desk";
- req_access = list(1)
+"xK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"sd" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
+"xL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"xM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/camera/network/security{
+ icon_state = "camera";
dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals6,
/turf/simulated/floor/tiled,
/area/security/lobby)
-"se" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/red/bordercorner2,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"sf" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"sg" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"sh" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/item/device/radio/intercom{
- dir = 2;
- pixel_y = -24
- },
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"si" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/table/steel,
-/obj/machinery/computer/skills{
- pixel_y = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"sj" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/computer/secure_data{
- dir = 1
- },
-/obj/item/device/radio/intercom/department/security{
- dir = 2;
- icon_state = "secintercom";
- pixel_y = -24
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"sk" = (
-/obj/structure/table/steel,
-/obj/machinery/photocopier/faxmachine{
- department = "Security-Desk"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"sl" = (
+"xN" = (
/obj/structure/lattice,
/obj/machinery/door/firedoor/glass,
/obj/machinery/light/small{
@@ -10748,7 +14794,7 @@
},
/turf/simulated/open,
/area/maintenance/station/elevator)
-"sm" = (
+"xO" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -10761,10 +14807,7 @@
},
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"sn" = (
-/turf/simulated/wall/r_wall,
-/area/hallway/station/upper)
-"so" = (
+"xP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -10799,7 +14842,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"sp" = (
+"xQ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -10807,7 +14850,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"sq" = (
+"xR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -10816,7 +14859,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"ss" = (
+"xS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -10828,7 +14871,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"st" = (
+"xT" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -10841,13 +14884,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"su" = (
+"xU" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"sv" = (
+"xV" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -10855,20 +14898,20 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"sw" = (
+"xW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"sx" = (
+"xX" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"sy" = (
+"xY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -10877,12 +14920,12 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"sz" = (
+"xZ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"sA" = (
+"ya" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -10891,7 +14934,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"sB" = (
+"yb" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -10900,7 +14943,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"sC" = (
+"yc" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -10918,7 +14961,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"sD" = (
+"yd" = (
/obj/machinery/door/airlock/glass_mining{
id_tag = "cargodoor";
name = "Cargo Office";
@@ -10942,7 +14985,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/office)
-"sE" = (
+"ye" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -10972,7 +15015,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"sF" = (
+"yf" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -10985,7 +15028,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"sG" = (
+"yg" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -10993,7 +15036,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"sH" = (
+"yh" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/belt/utility,
/obj/item/weapon/storage/belt/utility,
@@ -11014,171 +15057,297 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"sI" = (
-/obj/item/weapon/coin/silver,
-/obj/item/weapon/coin/silver,
-/obj/item/weapon/coin/silver,
-/obj/item/weapon/coin/silver,
-/obj/item/weapon/coin/silver,
-/obj/structure/closet/crate/secure{
- name = "Silver Crate";
- req_access = list(19)
+"yi" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 10
},
-/obj/item/weapon/coin/silver,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"sJ" = (
-/obj/item/stack/material/gold,
-/obj/item/weapon/storage/belt/champion,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/secure{
- name = "Gold Crate";
- req_access = list(19)
+/obj/structure/table/reinforced,
+/obj/item/weapon/clipboard,
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/briefcase{
+ pixel_x = -2;
+ pixel_y = -5
},
-/obj/item/weapon/coin/gold,
-/obj/item/weapon/coin/gold,
-/obj/item/weapon/coin/gold,
-/obj/item/weapon/coin/gold,
-/obj/item/weapon/coin/gold,
-/obj/item/weapon/coin/gold,
/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"sK" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/item/clothing/suit/space/void/wizard,
-/obj/item/clothing/head/helmet/space/void/wizard,
-/obj/structure/table/rack,
-/obj/machinery/light{
+/area/lawoffice)
+"yj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills{
+ icon_state = "laptop";
dir = 1
},
/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"sL" = (
-/obj/structure/filingcabinet/security{
- name = "Security Records"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"sM" = (
-/obj/structure/filingcabinet/medical{
- desc = "A large cabinet with hard copy medical records.";
- name = "Medical Records"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"sN" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/wall/r_wall,
-/area/security/nuke_storage)
-"sO" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced{
+/area/lawoffice)
+"yk" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
-/obj/structure/sign/warning/secure_area{
- pixel_x = -32
+/obj/item/weapon/pen/blue{
+ pixel_x = -5;
+ pixel_y = -1
},
-/obj/structure/cable{
- icon_state = "0-4"
+/obj/item/weapon/pen/red{
+ pixel_x = -1;
+ pixel_y = 3
},
-/turf/simulated/floor/plating,
-/area/hallway/station/upper)
-"sP" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced{
- dir = 1
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"yl" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/flora/pottedplant/stoutbush,
+/obj/machinery/button/windowtint{
+ id = "lawyer_blast";
+ pixel_x = 0;
+ pixel_y = -36
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = -26
},
-/obj/structure/sign/warning/high_voltage,
-/turf/simulated/floor/plating,
-/area/hallway/station/upper)
-"sQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/security/lobby)
-"sR" = (
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"ym" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"yn" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"yo" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills{
+ icon_state = "laptop";
+ dir = 1
},
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Security Lobby"
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"yp" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 6
},
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 8
+/obj/structure/table/reinforced,
+/obj/item/weapon/clipboard,
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = 27;
+ pixel_y = 0
},
-/turf/simulated/floor/tiled/monofloor{
- dir = 8
+/obj/item/weapon/storage/briefcase{
+ pixel_x = 3;
+ pixel_y = 0
},
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"yq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled,
/area/security/lobby)
-"sS" = (
-/obj/machinery/door/firedoor/glass,
+"yr" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"ys" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/computer/security{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"yt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"yu" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"yv" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"yw" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"yx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "security_lockdown";
- name = "Security Blast Doors";
- opacity = 0
- },
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 4
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 4
- },
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/turf/simulated/floor/tiled,
/area/security/lobby)
-"sT" = (
+"yy" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/structure/railing{
dir = 1
},
/turf/simulated/floor,
/area/maintenance/station/elevator)
-"sU" = (
+"yz" = (
/turf/simulated/wall,
/area/maintenance/station/elevator)
-"sV" = (
-/turf/simulated/wall,
+"yA" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/structure/sign/poster{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"sW" = (
+"yB" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/machinery/camera/network/northern_star,
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"yC" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"yD" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"yE" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"yF" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 9
},
@@ -11192,7 +15361,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"sX" = (
+"yG" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -11218,7 +15387,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"sY" = (
+"yH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11227,7 +15396,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"sZ" = (
+"yI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11243,7 +15412,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"ta" = (
+"yJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11259,7 +15428,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tb" = (
+"yK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11276,7 +15445,7 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tc" = (
+"yL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11297,7 +15466,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"td" = (
+"yM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11316,7 +15485,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"te" = (
+"yN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11335,7 +15504,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tf" = (
+"yO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11351,7 +15520,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tg" = (
+"yP" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -11368,7 +15537,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"th" = (
+"yQ" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -11379,7 +15548,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"ti" = (
+"yR" = (
/obj/machinery/camera/network/northern_star{
dir = 1
},
@@ -11393,7 +15562,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"tj" = (
+"yS" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/brown/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -11404,7 +15573,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"tk" = (
+"yT" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/brown/border,
/obj/effect/floor_decal/borderfloor/corner2{
@@ -11421,7 +15590,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"tl" = (
+"yU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -11432,7 +15601,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"tm" = (
+"yV" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/brown/border,
/obj/effect/floor_decal/borderfloor/corner2,
@@ -11445,7 +15614,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"tn" = (
+"yW" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/brown/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -11457,7 +15626,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"to" = (
+"yX" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -11478,7 +15647,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"tp" = (
+"yY" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -11499,7 +15668,7 @@
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
/area/quartermaster/foyer)
-"tq" = (
+"yZ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -11522,7 +15691,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"tr" = (
+"za" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
@@ -11532,7 +15701,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"ts" = (
+"zb" = (
/obj/structure/table/standard,
/obj/machinery/light_switch{
pixel_x = -12;
@@ -11547,7 +15716,7 @@
/obj/effect/floor_decal/corner/brown/bordercorner2,
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"tt" = (
+"zc" = (
/obj/structure/table/standard,
/obj/item/weapon/hand_labeler,
/obj/machinery/recharger,
@@ -11555,7 +15724,7 @@
/obj/effect/floor_decal/corner/brown/border,
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"tu" = (
+"zd" = (
/obj/structure/table/standard,
/obj/item/weapon/tape_roll,
/obj/item/weapon/storage/firstaid/regular{
@@ -11570,7 +15739,466 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/office)
-"tv" = (
+"ze" = (
+/obj/item/weapon/coin/silver,
+/obj/item/weapon/coin/silver,
+/obj/item/weapon/coin/silver,
+/obj/item/weapon/coin/silver,
+/obj/item/weapon/coin/silver,
+/obj/structure/closet/crate/secure{
+ name = "Silver Crate";
+ req_access = list(19)
+ },
+/obj/item/weapon/coin/silver,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"zf" = (
+/obj/item/stack/material/gold,
+/obj/item/weapon/storage/belt/champion,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/secure{
+ name = "Gold Crate";
+ req_access = list(19)
+ },
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/obj/item/weapon/coin/gold,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"zg" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/suit/space/void/wizard,
+/obj/item/clothing/head/helmet/space/void/wizard,
+/obj/structure/table/rack,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"zh" = (
+/obj/structure/filingcabinet/security{
+ name = "Security Records"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"zi" = (
+/obj/structure/filingcabinet/medical{
+ desc = "A large cabinet with hard copy medical records.";
+ name = "Medical Records"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"zj" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/r_wall,
+/area/security/nuke_storage)
+"zk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/sign/warning/secure_area{
+ pixel_x = -32
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/station/upper)
+"zl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/sign/warning/high_voltage,
+/turf/simulated/floor/plating,
+/area/hallway/station/upper)
+"zm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock{
+ name = "Internal Affairs";
+ req_access = list(38)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/lawoffice)
+"zn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/lobby)
+"zo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/lobby)
+"zp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/lobby)
+"zq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor,
+/area/security/lobby)
+"zr" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Security Lobby"
+ },
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"zs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/lobby)
+"zt" = (
+/turf/simulated/wall,
+/area/security/lobby)
+"zu" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/maintenance/station/elevator)
+"zv" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zw" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zx" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zy" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zz" = (
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/effect/floor_decal/steeldecal/steel_decals6,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zA" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zC" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zD" = (
+/turf/simulated/wall,
+/area/medical/psych)
+"zE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zF" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zG" = (
+/obj/machinery/vending/snack,
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zH" = (
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zI" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lightgrey{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zJ" = (
+/obj/structure/sign/poster{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/simulated/wall,
+/area/quartermaster/qm)
+"zK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/quartermaster/qm)
+"zL" = (
+/turf/simulated/wall,
+/area/quartermaster/qm)
+"zM" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Quartermaster";
+ req_access = list(41);
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/qm)
+"zN" = (
+/obj/structure/symbol/pr,
+/turf/simulated/wall,
+/area/quartermaster/qm)
+"zO" = (
+/turf/simulated/wall,
+/area/quartermaster/storage)
+"zP" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Bay";
+ req_access = list(31);
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/office)
+"zQ" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Bay";
+ req_access = list(31);
+ req_one_access = list()
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/steel_grid,
+/area/quartermaster/office)
+"zR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/quartermaster/office)
+"zS" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -11579,10 +16207,10 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"tw" = (
+"zT" = (
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"tx" = (
+"zU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -11590,7 +16218,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"ty" = (
+"zV" = (
/obj/structure/closet/emcloset,
/obj/effect/floor_decal/borderfloor{
dir = 9
@@ -11614,7 +16242,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tz" = (
+"zW" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -11625,20 +16253,45 @@
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tA" = (
+"zX" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/effect/floor_decal/corner/lightgrey/border{
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/machinery/camera/network/northern_star,
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zY" = (
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"zZ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -11648,21 +16301,18 @@
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
},
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tB" = (
+"Aa" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/bordercorner2{
- dir = 1
- },
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
@@ -11675,26 +16325,33 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tC" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+"Ab" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tD" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 4
- },
+"Ac" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tE" = (
+"Ad" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -11711,104 +16368,12 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"tF" = (
-/obj/machinery/atm{
- pixel_y = 30
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"tG" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"tH" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"tI" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"tJ" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"tK" = (
/obj/machinery/alarm{
pixel_y = 22
},
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Ae" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
@@ -11821,62 +16386,60 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tL" = (
+"Af" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Ag" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/obj/machinery/status_display{
pixel_y = 30
},
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tM" = (
+"Ah" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tN" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"tO" = (
+"Ai" = (
/obj/machinery/light{
dir = 1
},
@@ -11897,7 +16460,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tP" = (
+"Aj" = (
/obj/machinery/camera/network/northern_star,
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -11909,113 +16472,285 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tQ" = (
+"Ak" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Al" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Am" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
/obj/effect/floor_decal/corner/red/border{
dir = 1
},
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24;
+ req_access = list()
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"An" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Ao" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
/obj/effect/floor_decal/steeldecal/steel_decals7,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"tR" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 25
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/border{
- dir = 5
- },
-/obj/structure/flora/pottedplant/stoutbush,
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"tS" = (
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor,
-/area/maintenance/station/elevator)
-"tT" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Ap" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
+/obj/effect/floor_decal/borderfloor{
dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 8
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ layer = 3.3;
+ pixel_x = 0;
+ pixel_y = 26
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tU" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
+"Aq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"tW" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"tX" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/borderfloor{
- dir = 8
+ dir = 1
},
/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Ar" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"As" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"At" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
dir = 8
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Au" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/border{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Av" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lightgrey/bordercorner{
+ dir = 1
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 5
},
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tY" = (
-/obj/structure/disposalpipe/segment,
+"Aw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"tZ" = (
+"Ax" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Ay" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Az" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 4
},
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 9
},
@@ -12024,176 +16759,216 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"ua" = (
-/turf/simulated/wall,
+"AA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 10;
+ icon_state = "fwindow";
+ id = "psych-tint"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
/area/medical/psych)
-"ub" = (
+"AB" = (
+/obj/structure/table/woodentable,
+/obj/structure/plushie/ian{
+ dir = 8;
+ icon_state = "ianplushie";
+ pixel_y = 6
+ },
+/obj/machinery/light_switch{
+ dir = 2;
+ name = "light switch ";
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"AC" = (
+/obj/structure/table/woodentable,
+/obj/item/toy/plushie/therapy/blue,
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 5;
+ pixel_y = 28
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"AD" = (
+/obj/structure/bookcase,
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"AE" = (
+/obj/structure/flora/pottedplant/fern,
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"AF" = (
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"AG" = (
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"uc" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"ud" = (
-/obj/machinery/vending/snack,
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"ue" = (
-/obj/machinery/vending/cola,
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"uf" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"ug" = (
-/obj/structure/sign/poster{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor,
+/area/maintenance/station/cargo)
+"AH" = (
/turf/simulated/wall,
+/area/maintenance/station/cargo)
+"AI" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"uh" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"ui" = (
-/turf/simulated/wall,
-/area/quartermaster/qm)
-"uj" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Quartermaster";
- req_access = list(41);
- req_one_access = list()
+"AJ" = (
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_x = 32;
+ pixel_y = 30
},
-/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"AK" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/device/megaphone,
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"AL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_grid,
-/area/quartermaster/qm)
-"uk" = (
-/obj/structure/symbol/pr,
-/turf/simulated/wall,
-/area/quartermaster/qm)
-"ul" = (
-/turf/simulated/wall,
-/area/quartermaster/storage)
-"um" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Bay";
- req_access = list(31);
- req_one_access = list()
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
},
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"AM" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"AN" = (
+/obj/machinery/status_display/supply_display,
+/turf/simulated/wall,
+/area/quartermaster/qm)
+"AO" = (
+/obj/machinery/navbeacon/delivery/south{
+ location = "QM #1"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"AP" = (
+/obj/machinery/navbeacon/delivery/south{
+ location = "QM #2"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light_switch{
+ dir = 2;
+ name = "light switch ";
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"AQ" = (
+/obj/machinery/navbeacon/delivery/south{
+ location = "QM #3"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"AR" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_grid,
-/area/quartermaster/office)
-"un" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Bay";
- req_access = list(31);
- req_one_access = list()
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"AS" = (
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/steel_grid,
-/area/quartermaster/office)
-"uo" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"AT" = (
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/weapon/stamp/cargo,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"AU" = (
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/weapon/storage/backpack/dufflebag,
+/obj/item/weapon/stamp/cargo,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"AV" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"AW" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/status_display/supply_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"AX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/quartermaster/office)
-"up" = (
+/area/quartermaster/storage)
+"AY" = (
+/turf/space,
+/area/supply/station{
+ dynamic_lighting = 0
+ })
+"AZ" = (
/obj/machinery/camera/network/security{
c_tag = "SEC - Vault Exterior West";
dir = 8
},
/turf/space,
/area/space)
-"uq" = (
+"Ba" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
@@ -12203,19 +16978,19 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"ur" = (
+"Bb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"us" = (
+"Bc" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"ut" = (
+"Bd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -12229,7 +17004,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"uu" = (
+"Be" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -12251,7 +17026,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"uv" = (
+"Bf" = (
/obj/machinery/door/airlock/vault/bolted{
req_access = list(53)
},
@@ -12287,7 +17062,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"uw" = (
+"Bg" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -12315,7 +17090,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"ux" = (
+"Bh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -12324,13 +17105,41 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Bi" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/turf/simulated/floor/tiled/steel_grid,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uy" = (
+"Bj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Bk" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -12348,7 +17157,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uz" = (
+"Bl" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
@@ -12362,7 +17171,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uA" = (
+"Bm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -12377,28 +17186,23 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uB" = (
+"Bn" = (
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 4
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uC" = (
+"Bo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -12415,7 +17219,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uD" = (
+"Bp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12432,7 +17236,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uE" = (
+"Bq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12446,7 +17250,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uF" = (
+"Br" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12466,7 +17270,7 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uG" = (
+"Bs" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12483,7 +17287,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uH" = (
+"Bt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12501,559 +17305,276 @@
/obj/machinery/door/firedoor/glass/hidden/steel,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"uJ" = (
+"Bu" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/item/device/radio/beacon,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/junction/yjunction,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uK" = (
+"Bv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/bordercorner{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uL" = (
+"Bw" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uM" = (
+"Bx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uN" = (
+"By" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uO" = (
+"Bz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"BA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/junction{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"BB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"BC" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"BD" = (
+/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"uQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"uR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"uS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"uT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"uU" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/bordercorner{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"uV" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"uW" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"uX" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized{
- dir = 10;
- icon_state = "fwindow";
- id = "psych-tint"
- },
+"BE" = (
/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/medical/psych)
-"uY" = (
-/obj/structure/table/woodentable,
-/obj/structure/plushie/ian{
- dir = 8;
- icon_state = "ianplushie";
- pixel_y = 6
- },
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
+/obj/machinery/door/airlock/medical{
+ id_tag = "mentaldoor";
+ name = "Mental Health";
+ req_access = list(64)
},
/turf/simulated/floor/wood,
/area/medical/psych)
-"uZ" = (
-/obj/structure/table/woodentable,
-/obj/item/toy/plushie/therapy/blue,
-/obj/item/weapon/storage/secure/safe{
- pixel_x = 5;
- pixel_y = 28
+"BF" = (
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"BG" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
},
/turf/simulated/floor/wood,
/area/medical/psych)
-"va" = (
-/obj/structure/bookcase,
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"vb" = (
-/obj/structure/flora/pottedplant/fern,
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"vc" = (
+"BH" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/border_only,
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"vd" = (
-/turf/simulated/wall,
+"BI" = (
+/obj/machinery/light/small,
+/obj/structure/mopbucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/mop,
+/turf/simulated/floor/tiled,
/area/maintenance/station/cargo)
-"ve" = (
-/obj/structure/filingcabinet,
-/turf/simulated/floor/tiled,
-/area/quartermaster/qm)
-"vf" = (
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- pixel_x = 32;
- pixel_y = 30
+"BJ" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/quartermaster/qm)
-"vg" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/device/megaphone,
+/area/maintenance/station/cargo)
+"BK" = (
+/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/tiled,
-/area/quartermaster/qm)
-"vh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
+/area/maintenance/station/cargo)
+"BL" = (
+/obj/machinery/computer/supplycomp{
dir = 4
},
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
+/obj/machinery/camera/network/cargo{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"vi" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
+"BM" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Quartermaster"
+ },
/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"vj" = (
-/obj/machinery/status_display/supply_display,
-/turf/simulated/wall,
+"BN" = (
+/obj/structure/table/standard,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen/red{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"vk" = (
-/obj/machinery/navbeacon/delivery/south{
- location = "QM #1"
+"BO" = (
+/obj/structure/bed/chair{
+ dir = 8
},
-/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"vl" = (
-/obj/machinery/navbeacon/delivery/south{
- location = "QM #2"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/light_switch{
- dir = 2;
- name = "light switch ";
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"vm" = (
-/obj/machinery/navbeacon/delivery/south{
- location = "QM #3"
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
+/area/quartermaster/qm)
+"BP" = (
/obj/structure/cable/green{
- icon_state = "0-4"
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"BQ" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/camera/network/cargo{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"vn" = (
+"BR" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"BS" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"vo" = (
+"BT" = (
/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 9
- },
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"vp" = (
-/obj/structure/closet/secure_closet/cargotech,
-/obj/item/weapon/stamp/cargo,
+"BU" = (
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"vq" = (
-/obj/structure/closet/secure_closet/cargotech,
-/obj/item/weapon/storage/backpack/dufflebag,
-/obj/item/weapon/stamp/cargo,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"vr" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"vs" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/status_display/supply_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"vt" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"vu" = (
-/turf/space,
-/area/supply/station{
- dynamic_lighting = 0
- })
-"vv" = (
+"BV" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -26
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"vw" = (
+"BW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"vx" = (
+"BX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"vy" = (
+"BY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
@@ -13062,7 +17583,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/nuke_storage)
-"vz" = (
+"BZ" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
},
@@ -13081,7 +17602,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vA" = (
+"Ca" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -13090,37 +17611,36 @@
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
},
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Cb" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/lightgrey/border,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"vB" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
},
+/turf/simulated/floor/tiled,
+/area/hallway/station/upper)
+"Cc" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vC" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/lightgrey/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"vD" = (
+"Cd" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/borderfloor/corner2{
@@ -13137,7 +17657,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vE" = (
+"Ce" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13154,7 +17674,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vF" = (
+"Cf" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lightgrey/border,
/obj/effect/floor_decal/borderfloor/corner2,
@@ -13167,7 +17687,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vG" = (
+"Cg" = (
/obj/machinery/camera/network/northern_star{
dir = 1
},
@@ -13185,15 +17705,19 @@
/obj/effect/floor_decal/corner/lightgrey/bordercorner2{
dir = 9
},
+/obj/item/device/radio/intercom{
+ dir = 2;
+ pixel_y = -24
+ },
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vH" = (
+"Ch" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vI" = (
+"Ci" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
@@ -13205,7 +17729,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals6,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vJ" = (
+"Cj" = (
/obj/machinery/light,
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
@@ -13219,7 +17743,7 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vK" = (
+"Ck" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -13230,419 +17754,59 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vL" = (
+"Cl" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 1
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vM" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner{
+"Cm" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals7{
dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 6
- },
+/obj/machinery/computer/timeclock/premade/south,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"vN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"vO" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"vP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"vQ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"vR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"vS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"vU" = (
-/obj/effect/floor_decal/steeldecal/steel_decals4,
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"vV" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/medical{
- id_tag = "mentaldoor";
- name = "Mental Health";
- req_access = list(64)
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"vW" = (
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"vX" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"vY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/station/cargo)
-"vZ" = (
-/obj/machinery/light/small,
-/obj/structure/mopbucket,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/mop,
-/turf/simulated/floor/tiled,
-/area/maintenance/station/cargo)
-"wa" = (
-/obj/effect/floor_decal/rust,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/maintenance/station/cargo)
-"wb" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled,
-/area/maintenance/station/cargo)
-"wc" = (
-/obj/machinery/computer/supplycomp{
- dir = 4
- },
-/obj/machinery/camera/network/cargo{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/qm)
-"wd" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Quartermaster"
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/qm)
-"we" = (
-/obj/structure/table/standard,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/pen{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/pen/red{
- pixel_x = 2;
- pixel_y = 6
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/qm)
-"wf" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/quartermaster/qm)
-"wg" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/quartermaster/qm)
-"wh" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/camera/network/cargo{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"wi" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"wj" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"wk" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"wl" = (
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"wm" = (
-/obj/structure/safe,
-/obj/item/clothing/under/color/yellow,
-/obj/item/toy/katana,
-/obj/item/weapon/disk/nuclear{
- name = "authentication disk"
- },
-/obj/item/weapon/moneybag/vault,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"wn" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/secure/large/reinforced{
- anchored = 1;
- desc = "A hefty, reinforced metal crate with an electronic locking system. It's securely bolted to the floor and cannot be moved.";
- name = "gun safe";
- req_access = list(1)
- },
-/obj/item/weapon/gun/projectile/revolver/consul,
-/obj/item/ammo_magazine/s44,
-/obj/item/ammo_magazine/s44,
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"wo" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/secure_closet/freezer/money,
-/obj/item/weapon/storage/secure/briefcase/money{
- desc = "An sleek tidy briefcase.";
- name = "secure briefcase"
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"wp" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"wq" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"wr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/sign/warning/secure_area{
- pixel_x = -32
- },
-/turf/simulated/floor/plating,
-/area/hallway/station/upper)
-"ws" = (
-/obj/structure/sign/warning/high_voltage,
-/turf/simulated/wall/r_wall,
-/area/teleporter/departing)
-"wt" = (
-/turf/simulated/wall,
-/area/teleporter/departing)
-"wu" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/teleporter/departing)
-"wv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/glass{
- name = "Long-Range Teleporter Access"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/steel_grid,
-/area/teleporter/departing)
-"ww" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/sign/directions/medical{
- dir = 4;
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/teleporter/departing)
-"wx" = (
-/obj/structure/sign/directions/cargo{
- dir = 4;
- pixel_y = -8
- },
-/obj/structure/sign/directions/security{
- dir = 1;
- icon_state = "direction_sec";
- pixel_y = 8
- },
-/turf/simulated/wall,
-/area/teleporter/departing)
-"wy" = (
-/turf/simulated/wall,
-/area/tether/station/stairs_three)
-"wz" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Stairwell"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 8
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 8
- },
-/area/tether/station/stairs_three)
-"wA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/glass,
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 4
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 4
- },
-/area/tether/station/stairs_three)
-"wB" = (
-/obj/structure/sign/directions/security{
- dir = 1;
- icon_state = "direction_sec";
- pixel_y = 8
- },
-/obj/structure/sign/directions/cargo{
- dir = 4;
- pixel_y = -8
- },
-/turf/simulated/wall,
-/area/tether/station/stairs_three)
-"wC" = (
-/obj/structure/sign/department/medbay,
-/turf/simulated/wall,
-/area/medical/reception)
-"wD" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "medbayquar";
- name = "Medbay Emergency Lockdown Shutters";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/medical/reception)
-"wE" = (
-/turf/simulated/wall,
-/area/medical/reception)
-"wF" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 10
- },
+"Cn" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloor/corner2{
dir = 9
},
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 9
},
-/obj/machinery/computer/timeclock/premade/west,
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals7{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"wG" = (
+"Co" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"wH" = (
+"Cp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals6,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"wI" = (
+"Cq" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloor/corner2,
@@ -13655,7 +17819,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"wJ" = (
+"Cr" = (
/obj/machinery/light,
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/paleblue/border,
@@ -13667,7 +17831,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"wK" = (
+"Cs" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/steeldecal/steel_decals7{
@@ -13683,24 +17847,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"wL" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/borderfloor/corner2{
- dir = 9
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"wM" = (
+"Ct" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
},
@@ -13709,7 +17856,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"wN" = (
+"Cv" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
},
@@ -13724,11 +17871,11 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"wO" = (
+"Cw" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/wood,
/area/medical/psych)
-"wP" = (
+"Cx" = (
/obj/machinery/alarm{
dir = 8;
pixel_x = 25;
@@ -13736,23 +17883,23 @@
},
/turf/simulated/floor/wood,
/area/medical/psych)
-"wQ" = (
+"Cy" = (
/obj/machinery/door/airlock{
name = "Secondary Janitorial Closet";
req_access = list(26)
},
/turf/simulated/floor/tiled,
/area/maintenance/station/cargo)
-"wR" = (
+"Cz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled,
/area/maintenance/station/cargo)
-"wS" = (
+"CA" = (
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled,
/area/maintenance/station/cargo)
-"wT" = (
+"CB" = (
/obj/machinery/light_switch{
pixel_y = -25
},
@@ -13761,16 +17908,16 @@
/obj/item/weapon/storage/box/lights/mixed,
/turf/simulated/floor/tiled,
/area/maintenance/station/cargo)
-"wU" = (
+"CC" = (
/obj/machinery/computer/security/mining{
dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"wV" = (
+"CD" = (
/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"wW" = (
+"CE" = (
/obj/structure/table/standard,
/obj/item/weapon/clipboard,
/obj/item/weapon/stamp/qm,
@@ -13779,7 +17926,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"wX" = (
+"CF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
@@ -13788,7 +17935,7 @@
/mob/living/simple_animal/fluffy,
/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"wY" = (
+"CG" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -13804,7 +17951,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"wZ" = (
+"CH" = (
/obj/machinery/door/airlock/glass_mining{
name = "Quartermaster";
req_access = list(41);
@@ -13824,7 +17971,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/qm)
-"xa" = (
+"CI" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -13846,7 +17993,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"xb" = (
+"CJ" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -13857,7 +18004,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"xc" = (
+"CK" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -13872,7 +18019,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"xd" = (
+"CL" = (
/obj/structure/disposalpipe/sortjunction/flipped{
dir = 1;
sortType = "Cargo Bay";
@@ -13883,17 +18030,17 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"xe" = (
+"CM" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"xf" = (
+"CN" = (
/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"xg" = (
+"CO" = (
/obj/machinery/conveyor_switch/oneway{
convdir = -1;
id = "QMLoad2"
@@ -13907,13 +18054,13 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"xh" = (
+"CP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"xi" = (
+"CQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
@@ -13922,7 +18069,7 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"xj" = (
+"CR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
@@ -13941,16 +18088,355 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"xk" = (
+"CS" = (
/turf/simulated/floor/airless,
/area/supply/station{
base_turf = /turf/simulated/floor/airless;
dynamic_lighting = 0
})
-"xl" = (
-/turf/simulated/wall/r_wall,
+"CT" = (
+/obj/structure/safe,
+/obj/item/clothing/under/color/yellow,
+/obj/item/toy/katana,
+/obj/item/weapon/disk/nuclear{
+ name = "authentication disk"
+ },
+/obj/item/weapon/moneybag/vault,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"CU" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/secure/large/reinforced{
+ anchored = 1;
+ desc = "A hefty, reinforced metal crate with an electronic locking system. It's securely bolted to the floor and cannot be moved.";
+ name = "gun safe";
+ req_access = list(1)
+ },
+/obj/item/weapon/gun/projectile/revolver/consul,
+/obj/item/ammo_magazine/s44,
+/obj/item/ammo_magazine/s44,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"CV" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/secure_closet/freezer/money,
+/obj/item/weapon/storage/secure/briefcase/money{
+ desc = "An sleek tidy briefcase.";
+ name = "secure briefcase"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"CW" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"CX" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"CY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/sign/warning/secure_area{
+ pixel_x = -32
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/station/upper)
+"CZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/sign/warning/high_voltage,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/station/upper)
+"Da" = (
+/turf/simulated/wall,
/area/teleporter/departing)
-"xm" = (
+"Db" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/teleporter/departing)
+"Dc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Long-Range Teleporter Access"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel_grid,
+/area/teleporter/departing)
+"Dd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/sign/directions/medical{
+ dir = 4;
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/teleporter/departing)
+"De" = (
+/obj/structure/sign/directions/cargo{
+ dir = 4;
+ pixel_y = -8
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ icon_state = "direction_sec";
+ pixel_y = 8
+ },
+/turf/simulated/wall,
+/area/teleporter/departing)
+"Df" = (
+/turf/simulated/wall,
+/area/tether/station/stairs_three)
+"Dg" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Stairwell"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/steeldecal/steel_decals_central1{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monofloor{
+ dir = 8
+ },
+/area/tether/station/stairs_three)
+"Dh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/steeldecal/steel_decals_central1{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monofloor{
+ dir = 4
+ },
+/area/tether/station/stairs_three)
+"Di" = (
+/obj/structure/sign/directions/security{
+ dir = 1;
+ icon_state = "direction_sec";
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/cargo{
+ dir = 4;
+ pixel_y = -8
+ },
+/turf/simulated/wall,
+/area/tether/station/stairs_three)
+"Dj" = (
+/obj/structure/sign/department/medbay,
+/turf/simulated/wall,
+/area/medical/reception)
+"Dk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"Dl" = (
+/turf/simulated/wall,
+/area/medical/reception)
+"Dm" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Medbay Lobby"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central1{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monofloor{
+ dir = 8
+ },
+/area/medical/reception)
+"Dn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central1{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monofloor{
+ dir = 4
+ },
+/area/medical/reception)
+"Do" = (
+/obj/structure/sign/department/medbay,
+/turf/simulated/wall/r_wall,
+/area/medical/chemistry)
+"Dp" = (
+/turf/simulated/wall/r_wall,
+/area/medical/chemistry)
+"Dq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 1;
+ id = "chemistry";
+ layer = 3.1;
+ name = "Chemistry Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"Dr" = (
+/obj/structure/sign/department/operational,
+/turf/simulated/wall,
+/area/medical/surgery_hallway)
+"Ds" = (
+/obj/machinery/door/airlock/medical{
+ name = "Psych/Surgery Waiting Room";
+ req_one_access = list()
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"Dt" = (
+/turf/simulated/wall,
+/area/medical/surgery_hallway)
+"Du" = (
+/obj/machinery/camera/network/medbay{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"Dv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"Dw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/qm)
+"Dx" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"Dy" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"Dz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"DA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"DB" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"DC" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/turf/simulated/floor,
+/area/quartermaster/storage)
+"DD" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "cargo_bay_door";
+ locked = 1;
+ name = "Cargo Docking Hatch"
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"DE" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/fancy/cigarettes{
pixel_y = 2
@@ -13972,7 +18458,7 @@
/obj/effect/floor_decal/corner_steel_grid,
/turf/simulated/floor/tiled,
/area/teleporter/departing)
-"xn" = (
+"DF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13984,7 +18470,7 @@
/obj/machinery/camera/network/civilian,
/turf/simulated/floor/tiled,
/area/teleporter/departing)
-"xo" = (
+"DG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13998,7 +18484,7 @@
},
/turf/simulated/floor/tiled,
/area/teleporter/departing)
-"xp" = (
+"DH" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -14022,7 +18508,7 @@
},
/turf/simulated/floor/tiled,
/area/teleporter/departing)
-"xq" = (
+"DI" = (
/obj/effect/floor_decal/corner_steel_grid{
dir = 10
},
@@ -14031,7 +18517,7 @@
},
/turf/simulated/floor/tiled,
/area/teleporter/departing)
-"xr" = (
+"DJ" = (
/obj/effect/floor_decal/corner_steel_grid{
dir = 10
},
@@ -14041,7 +18527,7 @@
},
/turf/simulated/floor/tiled,
/area/teleporter/departing)
-"xs" = (
+"DK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -14050,13 +18536,7 @@
},
/turf/simulated/floor/tiled,
/area/tether/station/stairs_three)
-"xt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
+"DL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -14064,37 +18544,33 @@
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 4
},
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable,
/turf/simulated/floor/tiled,
/area/tether/station/stairs_three)
-"xu" = (
-/obj/structure/filingcabinet/chestdrawer{
- name = "Medical Forms"
- },
+"DM" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 9
},
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"xv" = (
-/obj/structure/filingcabinet/chestdrawer{
- name = "Medical Forms"
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
},
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"xw" = (
/obj/structure/filingcabinet/medical{
desc = "A large cabinet with hard copy medical records.";
name = "Medical Records"
},
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"DN" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -14103,271 +18579,40 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"xx" = (
-/obj/structure/table/glass,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 5
- },
-/obj/item/weapon/storage/box/cups,
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"xy" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Medbay Lobby"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "medbayquar";
- name = "Medbay Emergency Lockdown Shutters";
- opacity = 0
- },
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 8
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 8
- },
-/area/medical/reception)
-"xz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "medbayquar";
- name = "Medbay Emergency Lockdown Shutters";
- opacity = 0
- },
-/obj/effect/floor_decal/steeldecal/steel_decals_central1{
- dir = 4
- },
-/turf/simulated/floor/tiled/monofloor{
- dir = 4
- },
-/area/medical/reception)
-"xA" = (
-/obj/structure/sign/department/medbay,
-/turf/simulated/wall/r_wall,
-/area/medical/chemistry)
-"xB" = (
-/turf/simulated/wall/r_wall,
-/area/medical/chemistry)
-"xC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/blast/shutters{
- dir = 1;
- id = "chemistry";
- layer = 3.1;
- name = "Chemistry Shutters"
- },
-/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"xD" = (
-/obj/structure/sign/department/operational,
-/turf/simulated/wall,
-/area/medical/surgery_hallway)
-"xE" = (
-/obj/machinery/door/airlock/medical{
- name = "Psych/Surgery Waiting Room";
- req_one_access = list()
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery_hallway)
-"xF" = (
-/turf/simulated/wall,
-/area/medical/surgery_hallway)
-"xG" = (
-/obj/machinery/camera/network/medbay{
- dir = 8
- },
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"xH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/qm)
-"xI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/qm)
-"xJ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"xK" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"xL" = (
+"DO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"xM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"xN" = (
-/obj/effect/floor_decal/industrial/loading{
- dir = 8
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"xO" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/turf/simulated/floor,
-/area/quartermaster/storage)
-"xP" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "cargo_bay_door";
- locked = 1;
- name = "Cargo Docking Hatch"
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"xQ" = (
-/obj/structure/closet/wardrobe/xenos,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/teleporter/departing)
-"xR" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
-"xS" = (
-/obj/effect/landmark{
- name = "JoinLateGateway"
- },
-/obj/effect/floor_decal/techfloor/orange{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
-"xT" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 5
- },
-/obj/machinery/computer/cryopod/gateway{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
-"xU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/station/stairs_three)
-"xV" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/camera/network/northern_star{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/tether/station/stairs_three)
-"xW" = (
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"xX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"xY" = (
-/obj/structure/bed/chair/office/light{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"xZ" = (
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/borderfloor/corner{
dir = 4
},
-/obj/machinery/computer/crew{
- dir = 8;
- throwpass = 1
- },
-/obj/effect/floor_decal/borderfloorwhite{
+/obj/effect/floor_decal/corner/red/bordercorner{
dir = 4
},
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
+/turf/simulated/floor/tiled,
+/area/security/hallway)
+"DP" = (
+/obj/structure/table/steel,
+/obj/machinery/button/windowtint{
+ id = "sec_processing";
+ pixel_x = 6;
+ pixel_y = -2;
+ req_access = list(1)
},
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"ya" = (
+/turf/simulated/floor/tiled,
+/area/security/security_processing)
+"DQ" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
},
@@ -14383,7 +18628,7 @@
/obj/machinery/computer/transhuman/designer,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"yb" = (
+"DR" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -14396,17 +18641,20 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 1
},
-/obj/structure/reagent_dispensers/water_cooler/full,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"yc" = (
+"DS" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
},
-/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/junction,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"yd" = (
+"DT" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 4
},
@@ -14414,7 +18662,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"ye" = (
+"DU" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 5
},
@@ -14434,7 +18682,7 @@
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"yf" = (
+"DV" = (
/obj/machinery/chemical_dispenser/full,
/obj/structure/table/reinforced,
/obj/effect/floor_decal/borderfloorwhite{
@@ -14453,7 +18701,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"yg" = (
+"DW" = (
/obj/structure/table/reinforced,
/obj/item/weapon/reagent_containers/glass/beaker/large,
/obj/effect/floor_decal/borderfloorwhite{
@@ -14465,7 +18713,7 @@
/obj/item/weapon/reagent_containers/dropper,
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"yh" = (
+"DX" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -14475,7 +18723,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"yi" = (
+"DY" = (
/obj/machinery/chemical_dispenser/full,
/obj/structure/table/reinforced,
/obj/effect/floor_decal/borderfloorwhite{
@@ -14494,7 +18742,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"yj" = (
+"DZ" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -14512,7 +18760,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"yk" = (
+"Ea" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -14527,34 +18775,39 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"yl" = (
+"Eb" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"ym" = (
+"Ec" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/clipboard,
+/turf/simulated/floor/carpet/blue,
+/area/medical/psych)
+"Ed" = (
+/obj/structure/bed/psych,
+/turf/simulated/floor/carpet/blue,
+/area/medical/psych)
+"Ee" = (
/obj/structure/bed/chair/comfy/brown,
/obj/effect/landmark/start{
name = "Psychiatrist"
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"yn" = (
-/obj/structure/bed/psych,
+"Ef" = (
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"yp" = (
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"yq" = (
+"Eg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"yr" = (
+"Eh" = (
/obj/structure/table/woodentable,
/obj/item/weapon/paper_bin{
pixel_y = 4
@@ -14567,12 +18820,12 @@
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"ys" = (
+"Ei" = (
/obj/structure/table/woodentable,
/obj/machinery/computer/med_data/laptop,
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"yt" = (
+"Ej" = (
/obj/machinery/button/windowtint{
id = "psych-tint";
pixel_x = 24;
@@ -14580,7 +18833,7 @@
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"yu" = (
+"Ek" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -14592,7 +18845,7 @@
},
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"yv" = (
+"El" = (
/obj/structure/cable{
icon_state = "4-8"
},
@@ -14601,7 +18854,7 @@
},
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"yw" = (
+"Em" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
icon_state = "2-8"
@@ -14611,14 +18864,14 @@
},
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"yx" = (
+"En" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"yy" = (
+"Eo" = (
/obj/structure/closet,
/obj/random/maintenance/cargo,
/obj/random/maintenance/cargo,
@@ -14627,14 +18880,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"yz" = (
+"Ep" = (
/obj/structure/table/standard,
/obj/machinery/photocopier/faxmachine{
department = "Quartermaster-Office"
},
/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"yA" = (
+"Eq" = (
/obj/structure/table/standard,
/obj/item/weapon/coin/silver,
/obj/item/weapon/coin/silver,
@@ -14658,16 +18911,16 @@
/obj/item/weapon/cartridge/quartermaster,
/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"yB" = (
+"Er" = (
/obj/structure/closet/secure_closet/quartermaster,
/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"yC" = (
+"Es" = (
/obj/structure/closet,
/obj/item/weapon/storage/backpack/dufflebag,
/turf/simulated/floor/tiled,
/area/quartermaster/qm)
-"yD" = (
+"Et" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/vehicle/train/cargo/engine,
/obj/structure/cable/green{
@@ -14677,33 +18930,33 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"yE" = (
+"Eu" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"yF" = (
+"Ev" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"yG" = (
+"Ew" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"yH" = (
+"Ex" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"yI" = (
+"Ey" = (
/obj/effect/floor_decal/industrial/warning{
dir = 5
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"yJ" = (
+"Ez" = (
/obj/machinery/door/firedoor/border_only,
/obj/machinery/door/airlock/glass_external{
frequency = 1380;
@@ -14714,126 +18967,131 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"yK" = (
-/obj/machinery/camera/network/security{
- c_tag = "SEC - Vault Exterior South";
- dir = 2
- },
-/turf/simulated/mineral/floor/vacuum,
-/area/mine/explored/upper_level)
-"yL" = (
-/obj/structure/closet/wardrobe/black,
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/newscaster{
- layer = 3.3;
- pixel_x = -27;
+"EA" = (
+/obj/structure/closet/wardrobe/xenos,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
pixel_y = 0
},
/obj/effect/floor_decal/corner_steel_grid{
dir = 6
},
-/obj/machinery/light{
- dir = 8
- },
/turf/simulated/floor/tiled,
/area/teleporter/departing)
-"yM" = (
+"EB" = (
/obj/effect/floor_decal/techfloor/orange{
- dir = 8
+ dir = 9
},
/turf/simulated/floor/tiled/techfloor,
/area/teleporter/departing)
-"yN" = (
-/obj/machinery/cryopod/robot/door/gateway,
-/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
-"yO" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
-"yP" = (
+"EC" = (
+/obj/effect/landmark{
+ name = "JoinLateGateway"
+ },
/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
+ dir = 1
},
/turf/simulated/floor/tiled/techfloor,
/area/teleporter/departing)
-"yQ" = (
+"ED" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 5
+ },
+/obj/machinery/computer/cryopod/gateway{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"EE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/light{
- dir = 8
- },
/turf/simulated/floor/tiled,
/area/tether/station/stairs_three)
-"yR" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 28
+"EF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/structure/cable,
+/obj/machinery/camera/network/northern_star{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/tether/station/stairs_three)
-"yS" = (
-/obj/machinery/photocopier,
+"EG" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 8
},
+/obj/structure/filingcabinet/chestdrawer{
+ name = "Medical Forms"
+ },
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"yT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+"EH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"yU" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
+"EI" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"EJ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/computer/crew{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"yV" = (
-/obj/machinery/door/window/eastleft{
- req_one_access = list(5)
- },
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"yW" = (
+"EK" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 1
},
-/obj/item/weapon/stool/padded,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"yX" = (
+"EL" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"yY" = (
+"EM" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"yZ" = (
+"EN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"za" = (
+"EO" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -14845,7 +19103,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"zb" = (
+"EP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
@@ -14857,7 +19115,7 @@
},
/turf/simulated/floor/plating,
/area/medical/chemistry)
-"zc" = (
+"EQ" = (
/obj/machinery/chem_master,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -14867,7 +19125,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"zd" = (
+"ER" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
@@ -14876,12 +19134,12 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"ze" = (
+"ES" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/box/beakers,
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"zf" = (
+"ET" = (
/obj/machinery/chem_master,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -14895,7 +19153,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"zg" = (
+"EU" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -14913,7 +19171,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"zh" = (
+"EV" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
@@ -14922,7 +19180,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"zi" = (
+"EW" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -14940,7 +19198,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"zj" = (
+"EX" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -14960,7 +19218,7 @@
},
/turf/simulated/floor/wood,
/area/medical/psych)
-"zk" = (
+"EY" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -14974,7 +19232,7 @@
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"zl" = (
+"EZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -14983,7 +19241,7 @@
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"zm" = (
+"Fa" = (
/obj/structure/bed/chair/comfy/brown{
dir = 4
},
@@ -14996,12 +19254,12 @@
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"zn" = (
+"Fb" = (
/obj/structure/table/woodentable,
/obj/item/weapon/folder/white,
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"zo" = (
+"Fc" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
@@ -15010,27 +19268,27 @@
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"zp" = (
+"Fd" = (
/obj/machinery/door/airlock/maintenance/medical{
req_access = list(64)
},
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor,
/area/medical/psych)
-"zq" = (
+"Fe" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"zr" = (
+"Ff" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"zs" = (
+"Fg" = (
/obj/random/trash_pile,
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"zt" = (
+"Fh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15041,7 +19299,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"zu" = (
+"Fi" = (
/obj/structure/cable/green{
d2 = 2;
icon_state = "0-2"
@@ -15054,10 +19312,10 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"zv" = (
+"Fj" = (
/turf/simulated/wall,
/area/quartermaster/warehouse)
-"zw" = (
+"Fk" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/vehicle/train/cargo/trolley,
/obj/machinery/alarm{
@@ -15073,13 +19331,13 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"zx" = (
+"Fl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"zy" = (
+"Fm" = (
/obj/machinery/embedded_controller/radio/simple_docking_controller{
frequency = 1380;
id_tag = "cargo_bay";
@@ -15096,7 +19354,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"zz" = (
+"Fn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
@@ -15116,38 +19374,49 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"zA" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 10
+"Fo" = (
+/obj/structure/closet/wardrobe/black,
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
},
-/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
-"zB" = (
-/obj/effect/floor_decal/techfloor/orange,
-/obj/effect/floor_decal/techfloor/hole,
-/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
-"zC" = (
-/obj/effect/floor_decal/techfloor/orange,
-/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
-"zD" = (
-/obj/effect/floor_decal/techfloor/orange,
-/obj/effect/floor_decal/techfloor/hole/right,
-/turf/simulated/floor/tiled/techfloor,
-/area/teleporter/departing)
-"zE" = (
-/obj/effect/floor_decal/techfloor/orange{
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner_steel_grid{
dir = 6
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = 0;
- pixel_y = -24
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departing)
+"Fp" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
},
/turf/simulated/floor/tiled/techfloor,
/area/teleporter/departing)
-"zF" = (
+"Fq" = (
+/obj/machinery/cryopod/robot/door/gateway,
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"Fr" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"Fs" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"Ft" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -15156,20 +19425,13 @@
},
/turf/simulated/open,
/area/tether/station/stairs_three)
-"zG" = (
+"Fu" = (
/obj/structure/sign/deck3{
pixel_x = 32
},
/turf/simulated/open,
/area/tether/station/stairs_three)
-"zH" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/body_record_disk,
-/obj/item/weapon/paper{
- desc = "";
- info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing.";
- name = "Body Designer Note"
- },
+"Fv" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -15179,9 +19441,10 @@
/obj/machinery/light{
dir = 8
},
+/obj/machinery/photocopier,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"zI" = (
+"Fw" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -15191,7 +19454,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"zJ" = (
+"Fx" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
@@ -15203,7 +19466,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"zK" = (
+"Fy" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -15230,7 +19493,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"zL" = (
+"Fz" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -15249,19 +19512,16 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/bed/chair{
- dir = 4
- },
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"zM" = (
+"FA" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"zN" = (
+"FB" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -15271,7 +19531,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"zO" = (
+"FC" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
@@ -15280,10 +19540,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"zP" = (
-/obj/structure/bed/chair{
- dir = 8
- },
+"FD" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -15300,13 +19557,16 @@
icon_state = "tube1";
dir = 4
},
+/obj/structure/bed/chair{
+ dir = 8
+ },
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"zQ" = (
+"FE" = (
/obj/structure/sign/department/chem,
/turf/simulated/wall/r_wall,
/area/medical/chemistry)
-"zR" = (
+"FF" = (
/obj/structure/table/reinforced,
/obj/item/weapon/hand_labeler,
/obj/item/weapon/packageWrap,
@@ -15332,15 +19592,15 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"zS" = (
+"FG" = (
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"zT" = (
+"FH" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal,
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"zU" = (
+"FI" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -15351,7 +19611,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"zV" = (
+"FJ" = (
/obj/structure/table/reinforced,
/obj/item/weapon/screwdriver,
/obj/item/stack/material/phoron,
@@ -15379,7 +19639,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"zW" = (
+"FK" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -15394,7 +19654,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"zX" = (
+"FL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals6{
@@ -15402,7 +19662,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"zY" = (
+"FM" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -15411,7 +19671,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals6,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"zZ" = (
+"FN" = (
/obj/structure/cable/green,
/obj/machinery/power/apc{
dir = 2;
@@ -15424,23 +19684,23 @@
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"Aa" = (
+"FO" = (
/obj/machinery/camera/network/medbay{
dir = 1
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"Ab" = (
+"FP" = (
/obj/machinery/light,
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"Ac" = (
+"FQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"Ad" = (
+"FR" = (
/obj/structure/table/woodentable,
/obj/structure/sign/poster{
pixel_x = 0;
@@ -15456,20 +19716,20 @@
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"Ae" = (
+"FS" = (
/obj/structure/filingcabinet/chestdrawer{
name = "Medical Forms"
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"Af" = (
+"FT" = (
/obj/structure/filingcabinet/medical{
desc = "A large cabinet with hard copy medical records.";
name = "Medical Records"
},
/turf/simulated/floor/carpet/blue,
/area/medical/psych)
-"Ag" = (
+"FU" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
@@ -15478,7 +19738,7 @@
},
/turf/simulated/wall,
/area/maintenance/station/cargo)
-"Ah" = (
+"FV" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15488,7 +19748,7 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"Ai" = (
+"FW" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -15505,7 +19765,7 @@
},
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"Aj" = (
+"FX" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -15521,7 +19781,7 @@
},
/turf/simulated/floor,
/area/quartermaster/warehouse)
-"Ak" = (
+"FY" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -15537,7 +19797,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"Al" = (
+"FZ" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -15554,7 +19814,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"Am" = (
+"Ga" = (
/obj/machinery/light/small{
dir = 1
},
@@ -15569,7 +19829,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"An" = (
+"Gb" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -15585,7 +19845,7 @@
},
/turf/simulated/floor/tiled/steel,
/area/quartermaster/warehouse)
-"Ao" = (
+"Gc" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -15604,7 +19864,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"Ap" = (
+"Gd" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/vehicle/train/cargo/trolley,
/obj/machinery/light{
@@ -15617,16 +19877,47 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"Aq" = (
+"Ge" = (
/obj/effect/floor_decal/industrial/warning{
dir = 6
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"Ar" = (
+"Gf" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"Gg" = (
+/obj/effect/floor_decal/techfloor/orange,
+/obj/effect/floor_decal/techfloor/hole,
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"Gh" = (
+/obj/effect/floor_decal/techfloor/orange,
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"Gi" = (
+/obj/effect/floor_decal/techfloor/orange,
+/obj/effect/floor_decal/techfloor/hole/right,
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"Gj" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 6
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/teleporter/departing)
+"Gk" = (
/turf/simulated/open,
/area/tether/station/stairs_three)
-"As" = (
+"Gl" = (
/obj/item/roller,
/obj/item/roller{
pixel_y = 8
@@ -15651,7 +19942,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"At" = (
+"Gm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
d1 = 4;
@@ -15660,40 +19951,20 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Au" = (
+"Gn" = (
/obj/structure/table/glass,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/item/device/sleevemate,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Av" = (
-/obj/structure/window/reinforced{
- dir = 4
+"Go" = (
+/obj/machinery/door/window/eastleft{
+ req_one_access = list(5)
},
/obj/structure/table/glass,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue/bordercorner2{
- dir = 5
- },
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Aw" = (
+"Gp" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -15706,19 +19977,20 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 10
},
-/obj/structure/bed/chair{
- dir = 4
- },
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Ax" = (
+"Gq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"Gr" = (
/obj/structure/disposalpipe/sortjunction/flipped{
name = "Chemistry";
sortType = "Chemistry"
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Ay" = (
+"Gs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -15730,7 +20002,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Az" = (
+"Gt" = (
/obj/effect/floor_decal/steeldecal/steel_decals10,
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 4
@@ -15746,7 +20018,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"AA" = (
+"Gu" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -15769,7 +20041,7 @@
},
/turf/simulated/floor/tiled/monotile,
/area/medical/chemistry)
-"AB" = (
+"Gv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -15781,7 +20053,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"AC" = (
+"Gw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -15793,7 +20065,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"AD" = (
+"Gx" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -15812,7 +20084,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"AE" = (
+"Gy" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -15826,7 +20098,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"AF" = (
+"Gz" = (
/obj/structure/table/reinforced,
/obj/machinery/reagentgrinder,
/obj/effect/floor_decal/borderfloorwhite{
@@ -15849,7 +20121,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"AG" = (
+"GA" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -15873,7 +20145,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"AH" = (
+"GB" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -15894,10 +20166,10 @@
/obj/effect/floor_decal/steeldecal/steel_decals10,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"AI" = (
+"GC" = (
/turf/simulated/wall,
/area/maintenance/substation/cargo)
-"AJ" = (
+"GD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15911,7 +20183,7 @@
},
/turf/simulated/floor,
/area/maintenance/substation/cargo)
-"AK" = (
+"GE" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -15924,7 +20196,7 @@
},
/turf/simulated/floor,
/area/maintenance/substation/cargo)
-"AL" = (
+"GF" = (
/obj/structure/closet/crate,
/obj/structure/cable/green,
/obj/machinery/power/apc{
@@ -15936,18 +20208,18 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"AM" = (
+"GG" = (
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"AN" = (
+"GH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"AO" = (
+"GI" = (
/turf/simulated/floor/tiled/steel,
/area/quartermaster/warehouse)
-"AP" = (
+"GJ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -15955,7 +20227,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"AQ" = (
+"GK" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/vehicle/train/cargo/trolley,
/obj/structure/cable/green{
@@ -15968,33 +20240,33 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"AR" = (
+"GL" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"AS" = (
+"GM" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"AT" = (
+"GN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"AU" = (
+"GO" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"AV" = (
+"GP" = (
/obj/machinery/conveyor{
dir = 10;
icon_state = "conveyor0";
@@ -16002,7 +20274,7 @@
},
/turf/simulated/floor,
/area/quartermaster/storage)
-"AW" = (
+"GQ" = (
/obj/machinery/door/firedoor/border_only,
/obj/machinery/door/airlock/glass_external{
frequency = 1380;
@@ -16017,31 +20289,30 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"AX" = (
+"GR" = (
/obj/machinery/conveyor{
dir = 4;
id = "QMLoad"
},
/turf/simulated/floor,
/area/quartermaster/storage)
-"AY" = (
-/turf/simulated/wall/r_wall,
+"GS" = (
+/obj/structure/table/glass,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"GT" = (
+/turf/simulated/wall,
/area/maintenance/security_starboard)
-"AZ" = (
-/obj/structure/catwalk,
-/obj/random/trash_pile,
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
-"Ba" = (
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
-"Bb" = (
-/obj/structure/catwalk,
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
-"Bc" = (
+"GU" = (
/obj/structure/table/glass,
/obj/item/device/radio{
pixel_x = -4;
@@ -16057,22 +20328,19 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 8
},
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"GV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Bd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"Be" = (
+"GW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16083,7 +20351,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Bf" = (
+"GX" = (
/obj/machinery/door/window/eastright{
req_one_access = list(5)
},
@@ -16092,7 +20360,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Bg" = (
+"GY" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 1
},
@@ -16104,7 +20372,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Bh" = (
+"GZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16113,14 +20381,11 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Bi" = (
+"Ha" = (
/obj/structure/disposalpipe/junction,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Bj" = (
-/obj/structure/bed/chair{
- dir = 8
- },
+"Hb" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -16133,9 +20398,12 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 6
},
+/obj/structure/bed/chair{
+ dir = 8
+ },
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Bk" = (
+"Hc" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -16151,7 +20419,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"Bl" = (
+"Hd" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -16159,13 +20427,13 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"Bm" = (
+"He" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"Bn" = (
+"Hf" = (
/obj/machinery/chem_master,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -16175,14 +20443,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"Bo" = (
+"Hg" = (
/turf/simulated/wall/r_wall,
/area/medical/surgery_hallway)
-"Bp" = (
+"Hh" = (
/obj/machinery/mech_recharger,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Bq" = (
+"Hi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals6{
@@ -16190,7 +20458,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Br" = (
+"Hj" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -16201,7 +20469,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Bs" = (
+"Hk" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/blast/shutters{
@@ -16219,7 +20487,7 @@
},
/turf/simulated/floor/plating,
/area/medical/surgery)
-"Bt" = (
+"Hl" = (
/obj/machinery/iv_drip,
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
@@ -16229,7 +20497,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Bu" = (
+"Hm" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -16252,7 +20520,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Bv" = (
+"Hn" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -16269,7 +20537,7 @@
/obj/item/weapon/reagent_containers/blood/OMinus,
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Bw" = (
+"Ho" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/firstaid/surgery,
/obj/effect/floor_decal/borderfloorwhite{
@@ -16285,7 +20553,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Bx" = (
+"Hp" = (
/obj/structure/table/standard,
/obj/item/weapon/reagent_containers/spray/cleaner{
desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
@@ -16305,14 +20573,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"By" = (
+"Hq" = (
/turf/simulated/wall,
/area/medical/surgery)
-"Bz" = (
+"Hr" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
/area/maintenance/station/cargo)
-"BA" = (
+"Hs" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -16329,7 +20597,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/substation/cargo)
-"BB" = (
+"Ht" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -16344,7 +20612,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/substation/cargo)
-"BC" = (
+"Hu" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -16358,7 +20626,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/substation/cargo)
-"BD" = (
+"Hv" = (
/obj/structure/closet/crate,
/obj/machinery/light/small{
dir = 8;
@@ -16367,7 +20635,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"BE" = (
+"Hw" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -16376,14 +20644,14 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"BF" = (
+"Hx" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"BG" = (
+"Hy" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -16398,7 +20666,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"BH" = (
+"Hz" = (
/obj/machinery/door/blast/shutters{
dir = 8;
id = "qm_warehouse";
@@ -16418,7 +20686,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/warehouse)
-"BI" = (
+"HA" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -16435,13 +20703,13 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"BJ" = (
+"HB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"BK" = (
+"HC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16451,7 +20719,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"BL" = (
+"HD" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -16461,27 +20729,27 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"BM" = (
+"HE" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"BN" = (
+"HF" = (
/obj/machinery/conveyor{
dir = 1;
id = "QMLoad"
},
/turf/simulated/floor,
/area/quartermaster/storage)
-"BO" = (
+"HG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"BP" = (
+"HH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
@@ -16498,64 +20766,60 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"BQ" = (
-/turf/simulated/wall,
-/area/maintenance/security_starboard)
-"BR" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
-"BS" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+"HI" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/random/maintenance/clean,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/medical,
-/obj/random/medical/lite,
-/obj/random/tool,
-/obj/random/maintenance/medical,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/clean,
+/obj/structure/table/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/computer/med_data/laptop{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"HJ" = (
+/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/security_starboard)
-"BT" = (
-/obj/structure/closet/crate,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/medical,
-/obj/random/junk,
-/obj/random/firstaid,
-/obj/random/medical/lite,
-/obj/random/maintenance/medical,
-/obj/effect/decal/cleanable/dirt,
+"HK" = (
+/obj/structure/catwalk,
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/security_starboard)
-"BU" = (
-/obj/structure/closet,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/medical,
-/obj/random/maintenance/medical,
-/obj/random/toy,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/maintenance/clean,
+"HL" = (
+/obj/structure/catwalk,
+/obj/random/trash_pile,
/turf/simulated/floor,
/area/maintenance/security_starboard)
-"BV" = (
-/obj/machinery/disposal,
+"HM" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
},
/obj/effect/floor_decal/corner/paleblue/border{
dir = 10
},
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/body_record_disk,
+/obj/item/weapon/paper{
+ desc = "";
+ info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing.";
+ name = "Body Designer Note"
},
+/obj/item/device/sleevemate,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"BW" = (
+"HN" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2{
@@ -16569,9 +20833,13 @@
icon_state = "alarm0";
pixel_y = -22
},
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"BX" = (
+"HO" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
},
@@ -16585,7 +20853,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"BY" = (
+"HP" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -16618,7 +20886,7 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"BZ" = (
+"HQ" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
},
@@ -16631,13 +20899,10 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 8
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
+/obj/structure/reagent_dispensers/water_cooler/full,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Ca" = (
+"HR" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2{
@@ -16646,25 +20911,28 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2{
dir = 9
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/cups,
+/obj/item/weapon/storage/box/cups{
+ pixel_x = 4;
+ pixel_y = 4
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Cb" = (
+"HS" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 8
},
-/obj/structure/disposalpipe/junction,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Cc" = (
+"HT" = (
/obj/effect/floor_decal/steeldecal/steel_decals6,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Cd" = (
+"HU" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
},
@@ -16678,10 +20946,12 @@
icon_state = "alarm0";
pixel_x = 24
},
-/obj/structure/flora/pottedplant,
+/obj/structure/bed/chair{
+ dir = 8
+ },
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"Ce" = (
+"HV" = (
/obj/structure/closet/secure_closet/medical1,
/obj/item/weapon/storage/box/pillbottles,
/obj/item/weapon/storage/box/syringes,
@@ -16702,7 +20972,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"Cf" = (
+"HW" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2{
@@ -16713,7 +20983,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"Cg" = (
+"HX" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
},
@@ -16727,7 +20997,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"Ch" = (
+"HY" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/machinery/light_switch{
@@ -16747,7 +21017,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"Ci" = (
+"HZ" = (
/obj/structure/table/reinforced,
/obj/machinery/chemical_dispenser/full,
/obj/effect/floor_decal/borderfloorwhite{
@@ -16761,11 +21031,11 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"Cj" = (
+"Ia" = (
/obj/structure/sign/nosmoking_1,
/turf/simulated/wall/r_wall,
/area/medical/surgery_hallway)
-"Ck" = (
+"Ib" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -16777,12 +21047,12 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Cl" = (
+"Ic" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Cm" = (
+"Id" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -16808,7 +21078,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Cn" = (
+"Ie" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -16829,7 +21099,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Co" = (
+"If" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -16842,7 +21112,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Cp" = (
+"Ig" = (
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 5
},
@@ -16851,7 +21121,11 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Cq" = (
+"Ih" = (
+/obj/effect/floor_decal/industrial/loading,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"Ii" = (
/obj/structure/table/standard,
/obj/item/device/healthanalyzer,
/obj/effect/floor_decal/borderfloorwhite{
@@ -16869,7 +21143,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Cr" = (
+"Ij" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -16878,7 +21152,7 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor,
/area/maintenance/substation/cargo)
-"Cs" = (
+"Ik" = (
/obj/machinery/power/terminal,
/obj/structure/cable{
icon_state = "0-8"
@@ -16889,7 +21163,7 @@
/obj/effect/floor_decal/rust,
/turf/simulated/floor,
/area/maintenance/substation/cargo)
-"Ct" = (
+"Il" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -16906,12 +21180,12 @@
},
/turf/simulated/floor,
/area/maintenance/substation/cargo)
-"Cu" = (
+"Im" = (
/obj/structure/closet/crate,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/steel,
/area/quartermaster/warehouse)
-"Cv" = (
+"In" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -16921,7 +21195,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"Cw" = (
+"Io" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -16931,7 +21205,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"Cx" = (
+"Ip" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -16944,7 +21218,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"Cy" = (
+"Iq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -16965,7 +21239,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/quartermaster/warehouse)
-"Cz" = (
+"Ir" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -16980,7 +21254,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"CA" = (
+"Is" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -16989,7 +21263,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"CB" = (
+"It" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -16999,11 +21273,11 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"CC" = (
+"Iu" = (
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"CD" = (
+"Iv" = (
/obj/machinery/conveyor_switch/oneway{
convdir = 1;
id = "QMLoad"
@@ -17013,13 +21287,28 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"CE" = (
+"Iw" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/clean,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/medical/lite,
+/obj/random/tool,
+/obj/random/maintenance/medical,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/security_starboard)
+"Ix" = (
/turf/simulated/wall,
/area/medical/resleeving)
-"CF" = (
+"Iy" = (
/turf/simulated/wall,
/area/medical/sleeper)
-"CG" = (
+"Iz" = (
/obj/machinery/door/airlock/glass_medical{
name = "Medbay Reception";
req_access = list(5)
@@ -17042,7 +21331,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"CH" = (
+"IA" = (
/obj/machinery/door/airlock/multi_tile/glass{
id_tag = "MedbayFoyer";
name = "Treatment Centre";
@@ -17058,7 +21347,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"CI" = (
+"IB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor/glass,
@@ -17068,21 +21357,21 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"CJ" = (
+"IC" = (
/obj/structure/sign/nosmoking_1{
pixel_x = 6;
pixel_y = 6
},
/turf/simulated/wall,
/area/medical/sleeper)
-"CK" = (
+"ID" = (
/turf/simulated/wall/r_wall,
/area/medical/medbay_primary_storage)
-"CL" = (
+"IE" = (
/obj/machinery/smartfridge/chemistry/chemvator,
/turf/simulated/wall/r_wall,
/area/medical/medbay_primary_storage)
-"CM" = (
+"IF" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -17106,7 +21395,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"CN" = (
+"IG" = (
/obj/machinery/vending/medical,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -17116,7 +21405,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"CO" = (
+"IH" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -17139,7 +21428,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"CP" = (
+"II" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -17170,7 +21459,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"CQ" = (
+"IJ" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -17190,7 +21479,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"CR" = (
+"IK" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -17208,7 +21497,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"CS" = (
+"IL" = (
/obj/machinery/computer/operating{
dir = 8
},
@@ -17224,22 +21513,22 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"CT" = (
+"IM" = (
/obj/machinery/optable,
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"CU" = (
+"IN" = (
/obj/machinery/oxygen_pump/anesthetic,
/turf/simulated/wall,
/area/medical/surgery)
-"CV" = (
+"IO" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Cargo Substation Bypass"
},
/turf/simulated/floor,
/area/maintenance/substation/cargo)
-"CW" = (
+"IP" = (
/obj/machinery/power/smes/buildable{
charge = 0;
RCon_tag = "Substation - Cargo"
@@ -17254,7 +21543,7 @@
},
/turf/simulated/floor,
/area/maintenance/substation/cargo)
-"CX" = (
+"IQ" = (
/obj/machinery/power/sensor{
name = "Powernet Sensor - Cargo Subgrid";
name_tag = "Cargo Subgrid"
@@ -17269,7 +21558,7 @@
},
/turf/simulated/floor,
/area/maintenance/substation/cargo)
-"CY" = (
+"IR" = (
/obj/structure/closet/crate,
/obj/machinery/alarm{
dir = 4;
@@ -17280,13 +21569,13 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/steel,
/area/quartermaster/warehouse)
-"CZ" = (
+"IS" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled/steel,
/area/quartermaster/warehouse)
-"Da" = (
+"IT" = (
/obj/machinery/button/remote/blast_door{
id = "qm_warehouse";
name = "Warehouse Door Control";
@@ -17296,7 +21585,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"Db" = (
+"IU" = (
/obj/machinery/button/remote/blast_door{
id = "qm_warehouse";
name = "Warehouse Door Control";
@@ -17309,7 +21598,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"Dc" = (
+"IV" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 5;
pixel_y = -32
@@ -17317,7 +21606,7 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"Dd" = (
+"IW" = (
/obj/effect/floor_decal/industrial/loading{
dir = 4
},
@@ -17328,7 +21617,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"De" = (
+"IX" = (
/obj/machinery/status_display/supply_display{
pixel_y = -32
},
@@ -17338,7 +21627,27 @@
},
/turf/simulated/floor,
/area/quartermaster/storage)
-"Df" = (
+"IY" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad"
+ },
+/obj/machinery/light,
+/turf/simulated/floor,
+/area/quartermaster/storage)
+"IZ" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/medical,
+/obj/random/junk,
+/obj/random/firstaid,
+/obj/random/medical/lite,
+/obj/random/maintenance/medical,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor,
+/area/maintenance/security_starboard)
+"Ja" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
},
@@ -17348,7 +21657,7 @@
/obj/machinery/organ_printer/flesh,
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"Dg" = (
+"Jb" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -17362,7 +21671,7 @@
/obj/item/device/sleevemate,
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"Dh" = (
+"Jc" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
pixel_x = 7;
@@ -17391,12 +21700,12 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"Di" = (
+"Jd" = (
/obj/machinery/atmospherics/unary/cryo_cell,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/medical/resleeving)
-"Dj" = (
+"Je" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -17417,7 +21726,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"Dk" = (
+"Jf" = (
/obj/structure/closet{
name = "spare clothes"
},
@@ -17441,7 +21750,7 @@
/obj/item/device/radio/headset,
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"Dl" = (
+"Jg" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced/polarized{
@@ -17451,7 +21760,7 @@
},
/turf/simulated/floor/plating,
/area/medical/resleeving)
-"Dm" = (
+"Jh" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
},
@@ -17473,12 +21782,12 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Dn" = (
+"Ji" = (
/obj/machinery/atmospherics/unary/cryo_cell,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/medical/sleeper)
-"Do" = (
+"Jj" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -17498,7 +21807,7 @@
/obj/structure/closet/secure_closet/medical1,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Dp" = (
+"Jk" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 9
},
@@ -17512,7 +21821,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Dq" = (
+"Jl" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -17535,7 +21844,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Dr" = (
+"Jm" = (
/obj/machinery/iv_drip,
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -17555,7 +21864,7 @@
/obj/item/weapon/reagent_containers/blood/OMinus,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ds" = (
+"Jn" = (
/obj/machinery/disposal,
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -17577,14 +21886,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Dt" = (
+"Jo" = (
/obj/structure/disposalpipe/junction,
/obj/effect/floor_decal/steeldecal/steel_decals6{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Du" = (
+"Jp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/steeldecal/steel_decals6{
@@ -17592,7 +21901,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Dv" = (
+"Jq" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/effect/floor_decal/borderfloorwhite{
dir = 5
@@ -17616,10 +21925,10 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Dw" = (
+"Jr" = (
/turf/simulated/wall,
/area/medical/medbay_primary_storage)
-"Dx" = (
+"Js" = (
/obj/machinery/vending/medical,
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
@@ -17632,7 +21941,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Dy" = (
+"Jt" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -17647,7 +21956,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Dz" = (
+"Ju" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -17661,7 +21970,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"DA" = (
+"Jv" = (
/obj/structure/railing{
dir = 4
},
@@ -17687,7 +21996,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"DB" = (
+"Jw" = (
/obj/structure/sign/goldenplaque{
desc = "Done No Harm.";
name = "Best Doctor 2552";
@@ -17695,7 +22004,7 @@
},
/turf/simulated/open,
/area/medical/medbay_primary_storage)
-"DC" = (
+"Jx" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/box/gloves{
pixel_x = 4;
@@ -17718,14 +22027,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"DD" = (
+"Jy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"DE" = (
+"Jz" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -17745,7 +22054,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"DF" = (
+"JA" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -17760,7 +22069,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"DG" = (
+"JB" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
@@ -17770,27 +22079,60 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"DH" = (
+"JC" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"JD" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"JE" = (
+/obj/structure/table/standard,
+/obj/item/device/healthanalyzer,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner2{
+ icon_state = "bordercolorcorner2";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery)
+"JF" = (
/turf/simulated/wall,
/area/maintenance/station/medbay)
-"DI" = (
+"JG" = (
/obj/machinery/door/airlock/maintenance/common,
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"DJ" = (
+"JH" = (
/obj/structure/closet/crate/freezer,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/steel,
/area/quartermaster/warehouse)
-"DK" = (
+"JI" = (
/obj/structure/closet/crate/internals,
/obj/machinery/light/small,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/steel,
/area/quartermaster/warehouse)
-"DL" = (
+"JJ" = (
/obj/machinery/firealarm{
dir = 1;
pixel_x = 0;
@@ -17799,16 +22141,16 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/steel,
/area/quartermaster/warehouse)
-"DM" = (
+"JK" = (
/obj/structure/closet/crate/medical,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/quartermaster/warehouse)
-"DN" = (
+"JL" = (
/obj/machinery/status_display/supply_display,
/turf/simulated/wall,
/area/quartermaster/warehouse)
-"DO" = (
+"JM" = (
/obj/structure/table/standard,
/obj/item/weapon/hand_labeler,
/obj/item/weapon/stamp{
@@ -17818,7 +22160,7 @@
/obj/item/weapon/hand_labeler,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"DP" = (
+"JN" = (
/obj/structure/table/standard,
/obj/machinery/cell_charger,
/obj/machinery/requests_console{
@@ -17829,7 +22171,7 @@
},
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"DQ" = (
+"JO" = (
/obj/structure/table/standard,
/obj/item/clothing/head/soft,
/obj/item/weapon/stamp{
@@ -17839,11 +22181,21 @@
/obj/item/clothing/head/soft,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"DR" = (
+"JP" = (
+/obj/structure/closet,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/toy,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/maintenance/clean,
+/turf/simulated/floor,
+/area/maintenance/security_starboard)
+"JQ" = (
/obj/structure/sign/nosmoking_1,
/turf/simulated/wall,
/area/medical/resleeving)
-"DS" = (
+"JR" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -17855,17 +22207,17 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"DT" = (
+"JS" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"DU" = (
+"JT" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"DV" = (
+"JU" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 5;
icon_state = "intact"
@@ -17875,7 +22227,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"DW" = (
+"JV" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
@@ -17884,7 +22236,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"DX" = (
+"JW" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
@@ -17916,7 +22268,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"DY" = (
+"JX" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
@@ -17929,7 +22281,7 @@
},
/turf/simulated/floor/plating,
/area/medical/resleeving)
-"DZ" = (
+"JY" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
},
@@ -17950,14 +22302,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ea" = (
+"JZ" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Eb" = (
+"Ka" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
},
@@ -17966,7 +22318,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ec" = (
+"Kb" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
@@ -17977,20 +22329,20 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ed" = (
+"Kc" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ee" = (
+"Kd" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ef" = (
+"Ke" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -17999,7 +22351,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Eg" = (
+"Kf" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/spray/cleaner{
pixel_x = -2;
@@ -18023,7 +22375,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Eh" = (
+"Kg" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -18044,10 +22396,10 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Ei" = (
+"Kh" = (
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Ej" = (
+"Ki" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -18055,7 +22407,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Ek" = (
+"Kj" = (
/obj/structure/railing{
dir = 4
},
@@ -18063,7 +22415,7 @@
/obj/item/weapon/soap/nanotrasen,
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"El" = (
+"Kk" = (
/obj/machinery/alarm{
dir = 8;
pixel_x = 25;
@@ -18071,7 +22423,7 @@
},
/turf/simulated/open,
/area/medical/medbay_primary_storage)
-"Em" = (
+"Kl" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/box/masks,
/obj/effect/floor_decal/borderfloorwhite{
@@ -18091,14 +22443,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"En" = (
+"Km" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Eo" = (
+"Kn" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -18112,7 +22464,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Ep" = (
+"Ko" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
},
@@ -18125,7 +22477,7 @@
/obj/structure/closet/secure_closet/medical2,
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Eq" = (
+"Kp" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/white/border,
/obj/effect/floor_decal/industrial/warning{
@@ -18139,7 +22491,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Er" = (
+"Kq" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/white/border,
@@ -18150,14 +22502,14 @@
/obj/item/stack/nanopaste,
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Es" = (
+"Kr" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/firstaid/surgery,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/white/border,
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Et" = (
+"Ks" = (
/obj/structure/table/standard,
/obj/item/weapon/reagent_containers/spray/cleaner{
desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
@@ -18177,7 +22529,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery)
-"Eu" = (
+"Kt" = (
/obj/structure/lattice,
/obj/structure/cable/green{
icon_state = "32-2"
@@ -18185,21 +22537,21 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/open,
/area/maintenance/station/medbay)
-"Ev" = (
+"Ku" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"Ew" = (
+"Kv" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"Ex" = (
+"Kw" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -18216,7 +22568,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"Ey" = (
+"Kx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -18225,7 +22577,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"Ez" = (
+"Ky" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -18234,7 +22586,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"EA" = (
+"Kz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -18244,7 +22596,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"EB" = (
+"KA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -18258,7 +22610,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"EC" = (
+"KB" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -18276,7 +22628,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"ED" = (
+"KC" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -18308,7 +22660,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"EE" = (
+"KD" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -18328,7 +22680,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"EF" = (
+"KE" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -18347,7 +22699,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"EG" = (
+"KF" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -18361,7 +22713,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"EH" = (
+"KG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -18375,7 +22727,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"EI" = (
+"KH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -18389,7 +22741,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"EJ" = (
+"KI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -18398,7 +22750,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"EK" = (
+"KJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -18408,7 +22760,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"EL" = (
+"KK" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
@@ -18421,7 +22773,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"EM" = (
+"KL" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
@@ -18431,7 +22783,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"EN" = (
+"KM" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
@@ -18454,7 +22806,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"EO" = (
+"KN" = (
/obj/machinery/atmospherics/pipe/zpipe/down{
dir = 8
},
@@ -18466,7 +22818,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"EP" = (
+"KO" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -18475,14 +22827,14 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"EQ" = (
+"KP" = (
/obj/effect/floor_decal/steeldecal/steel_decals4,
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 10
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"ER" = (
+"KQ" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass_medical{
name = "Medbay Equipment";
@@ -18502,7 +22854,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"ES" = (
+"KR" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 1
},
@@ -18511,13 +22863,13 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"ET" = (
+"KS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"EU" = (
+"KT" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -18535,14 +22887,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"EV" = (
+"KU" = (
/obj/structure/sign/nosmoking_1,
/turf/simulated/wall,
/area/medical/surgery2)
-"EW" = (
+"KV" = (
/turf/simulated/wall,
/area/medical/surgery2)
-"EX" = (
+"KW" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -18556,11 +22908,11 @@
},
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"EY" = (
+"KX" = (
/obj/structure/ladder,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"EZ" = (
+"KY" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/apc{
@@ -18574,7 +22926,7 @@
},
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"Fa" = (
+"KZ" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
@@ -18594,16 +22946,24 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"Fb" = (
+"La" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"Fc" = (
+"Lb" = (
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"Fd" = (
+"Lc" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/resleeving)
+"Ld" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -18622,7 +22982,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"Fe" = (
+"Le" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -18637,7 +22997,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ff" = (
+"Lf" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -18647,21 +23007,21 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Fg" = (
+"Lg" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Fh" = (
+"Lh" = (
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Fi" = (
+"Li" = (
/obj/effect/floor_decal/steeldecal/steel_decals10,
/obj/structure/table/glass,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Fj" = (
+"Lj" = (
/obj/machinery/sleeper{
dir = 8
},
@@ -18670,34 +23030,34 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Fk" = (
+"Lk" = (
/obj/machinery/sleep_console,
/obj/effect/floor_decal/corner_steel_grid{
dir = 10
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Fl" = (
+"Ll" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Fm" = (
+"Lm" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Fn" = (
+"Ln" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Fo" = (
+"Lo" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -18714,13 +23074,13 @@
/obj/item/device/defib_kit/loaded,
/turf/simulated/floor/tiled/white,
/area/space)
-"Fp" = (
+"Lp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/medical/medbay_primary_storage)
-"Fq" = (
+"Lq" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -18738,13 +23098,13 @@
/obj/item/weapon/storage/box/nifsofts_medical,
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Fr" = (
+"Lr" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Fs" = (
+"Ls" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -18758,13 +23118,13 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Ft" = (
+"Lt" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Fu" = (
+"Lu" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -18784,7 +23144,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Fv" = (
+"Lv" = (
/obj/structure/table/standard,
/obj/item/weapon/reagent_containers/blood/OMinus,
/obj/item/weapon/reagent_containers/blood/OMinus,
@@ -18803,7 +23163,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Fw" = (
+"Lw" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced/polarized{
@@ -18813,7 +23173,7 @@
},
/turf/simulated/floor/plating,
/area/medical/surgery2)
-"Fx" = (
+"Lx" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
},
@@ -18823,7 +23183,7 @@
/obj/structure/closet/secure_closet/medical2,
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Fy" = (
+"Ly" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -18842,7 +23202,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Fz" = (
+"Lz" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -18858,7 +23218,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"FA" = (
+"LA" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/firstaid/surgery,
/obj/effect/floor_decal/borderfloorwhite{
@@ -18874,7 +23234,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"FB" = (
+"LB" = (
/obj/structure/table/standard,
/obj/item/weapon/reagent_containers/spray/cleaner{
desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
@@ -18894,7 +23254,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"FC" = (
+"LC" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -18916,7 +23276,7 @@
/obj/random/maintenance/medical,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"FD" = (
+"LD" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -18925,7 +23285,7 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"FE" = (
+"LE" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -18940,7 +23300,7 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"FF" = (
+"LF" = (
/obj/machinery/computer/transhuman/resleeving{
dir = 1
},
@@ -18952,26 +23312,26 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"FG" = (
+"LG" = (
/obj/item/weapon/book/manual/resleeving,
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"FH" = (
+"LH" = (
/obj/machinery/clonepod/transhuman,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"FI" = (
+"LI" = (
/obj/machinery/transhuman/resleever,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"FJ" = (
+"LJ" = (
/obj/structure/bed/chair{
dir = 1
},
@@ -18985,7 +23345,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"FK" = (
+"LK" = (
/obj/structure/bed/chair{
dir = 1
},
@@ -18997,7 +23357,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/resleeving)
-"FL" = (
+"LL" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -19011,34 +23371,34 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"FM" = (
+"LM" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"FN" = (
+"LN" = (
/obj/effect/floor_decal/corner_steel_grid{
dir = 5
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"FO" = (
+"LO" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"FP" = (
+"LP" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"FQ" = (
+"LQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"FR" = (
+"LR" = (
/obj/structure/table/glass,
/obj/item/weapon/screwdriver,
/obj/item/weapon/storage/pill_bottle/tramadol,
@@ -19052,7 +23412,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"FS" = (
+"LS" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -19067,13 +23427,13 @@
/obj/item/clothing/glasses/hud/health,
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"FT" = (
+"LT" = (
/obj/effect/landmark/start{
name = "Paramedic"
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"FU" = (
+"LU" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19083,7 +23443,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"FV" = (
+"LV" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -19093,7 +23453,7 @@
/obj/structure/bed/chair/wheelchair,
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"FW" = (
+"LW" = (
/obj/item/weapon/reagent_containers/blood/empty,
/obj/item/weapon/reagent_containers/blood/empty,
/obj/item/weapon/reagent_containers/blood/empty,
@@ -19108,7 +23468,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"FX" = (
+"LX" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -19128,7 +23488,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"FY" = (
+"LY" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -19149,7 +23509,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"FZ" = (
+"LZ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19158,10 +23518,10 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Ga" = (
+"Ma" = (
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Gb" = (
+"Mb" = (
/obj/structure/table/standard,
/obj/item/device/healthanalyzer,
/obj/effect/floor_decal/borderfloorwhite{
@@ -19179,7 +23539,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Gc" = (
+"Mc" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19189,17 +23549,17 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"Gd" = (
+"Md" = (
/obj/structure/railing{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"Ge" = (
+"Me" = (
/turf/simulated/wall,
/area/crew_quarters/heads/cmo)
-"Gf" = (
+"Mf" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -19218,11 +23578,11 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Gg" = (
+"Mg" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Gh" = (
+"Mh" = (
/obj/machinery/bodyscanner{
dir = 8
},
@@ -19231,14 +23591,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Gi" = (
+"Mi" = (
/obj/machinery/body_scanconsole,
/obj/effect/floor_decal/corner_steel_grid{
dir = 10
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Gj" = (
+"Mj" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -19258,7 +23618,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Gk" = (
+"Mk" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
@@ -19274,7 +23634,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Gl" = (
+"Ml" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
@@ -19291,7 +23651,7 @@
/obj/item/weapon/storage/firstaid/regular,
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Gm" = (
+"Mm" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19312,7 +23672,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Gn" = (
+"Mn" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2,
@@ -19330,7 +23690,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Go" = (
+"Mo" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
@@ -19354,7 +23714,7 @@
/obj/item/weapon/storage/box/rxglasses,
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"Gp" = (
+"Mp" = (
/obj/structure/table/standard,
/obj/item/weapon/reagent_containers/blood/AMinus,
/obj/item/weapon/reagent_containers/blood/APlus,
@@ -19369,7 +23729,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Gq" = (
+"Mq" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19400,7 +23760,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Gr" = (
+"Mr" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19420,7 +23780,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Gs" = (
+"Ms" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -19438,24 +23798,40 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Gt" = (
+"Mt" = (
+/obj/machinery/computer/operating{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9,
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery2)
+"Mu" = (
/obj/machinery/optable,
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Gv" = (
+"Mv" = (
/obj/machinery/oxygen_pump/anesthetic,
/turf/simulated/wall,
/area/medical/surgery2)
-"Gw" = (
+"Mw" = (
/turf/simulated/open,
/area/medical/surgery_hallway)
-"Gx" = (
+"Mx" = (
/obj/machinery/light{
dir = 1
},
/turf/simulated/open,
/area/medical/surgery_hallway)
-"Gy" = (
+"My" = (
/obj/structure/flora/pottedplant/stoutbush,
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
@@ -19474,7 +23850,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"Gz" = (
+"Mz" = (
/obj/structure/filingcabinet/chestdrawer{
dir = 1
},
@@ -19489,7 +23865,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"GA" = (
+"MA" = (
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop{
pixel_x = 6;
@@ -19515,7 +23891,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"GB" = (
+"MB" = (
/obj/machinery/disposal,
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
@@ -19526,7 +23902,7 @@
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"GC" = (
+"MC" = (
/obj/structure/closet/secure_closet/CMO,
/obj/item/weapon/cmo_disk_holder,
/obj/effect/floor_decal/borderfloorwhite{
@@ -19543,7 +23919,7 @@
/obj/item/device/defib_kit/compact/combat/loaded,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"GD" = (
+"MD" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 5
},
@@ -19558,7 +23934,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"GE" = (
+"ME" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced/polarized{
@@ -19568,7 +23944,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/cmo)
-"GF" = (
+"MF" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -19584,7 +23960,7 @@
/obj/structure/closet/secure_closet/medical3,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"GG" = (
+"MG" = (
/obj/structure/filingcabinet/chestdrawer{
name = "scan records"
},
@@ -19596,7 +23972,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"GH" = (
+"MH" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19621,7 +23997,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay_primary_storage)
-"GI" = (
+"MI" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -19639,7 +24015,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"GJ" = (
+"MJ" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -19654,13 +24030,13 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"GK" = (
+"MK" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"GL" = (
+"ML" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 5
},
@@ -19677,7 +24053,7 @@
/obj/machinery/iv_drip,
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"GM" = (
+"MM" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19688,7 +24064,7 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"GN" = (
+"MN" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -19702,7 +24078,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"GO" = (
+"MO" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
@@ -19739,7 +24115,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"GP" = (
+"MP" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
@@ -19747,7 +24123,7 @@
/obj/item/weapon/stamp/cmo,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"GQ" = (
+"MQ" = (
/obj/structure/bed/chair{
dir = 8
},
@@ -19757,7 +24133,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"GR" = (
+"MR" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -19774,7 +24150,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"GS" = (
+"MS" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19795,7 +24171,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"GT" = (
+"MT" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19830,7 +24206,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"GU" = (
+"MU" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19853,7 +24229,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"GV" = (
+"MV" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19878,7 +24254,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"GW" = (
+"MW" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19892,7 +24268,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"GX" = (
+"MX" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19903,7 +24279,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"GY" = (
+"MY" = (
/obj/effect/floor_decal/steeldecal/steel_decals10,
/obj/structure/table/glass,
/obj/structure/cable/green{
@@ -19916,7 +24292,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"GZ" = (
+"MZ" = (
/obj/machinery/sleeper{
dir = 8
},
@@ -19933,7 +24309,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ha" = (
+"Na" = (
/obj/machinery/sleep_console,
/obj/effect/floor_decal/corner_steel_grid{
dir = 10
@@ -19948,7 +24324,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Hb" = (
+"Nb" = (
/obj/effect/floor_decal/steeldecal/steel_decals10{
dir = 8
},
@@ -19962,7 +24338,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Hc" = (
+"Nc" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19974,7 +24350,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Hd" = (
+"Nd" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19989,7 +24365,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"He" = (
+"Ne" = (
/obj/effect/floor_decal/borderfloorwhite/corner{
dir = 4
},
@@ -20003,7 +24379,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Hf" = (
+"Nf" = (
/obj/structure/sink{
pixel_y = 24
},
@@ -20020,7 +24396,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Hg" = (
+"Ng" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -20035,7 +24411,7 @@
/obj/machinery/camera/network/medbay,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Hh" = (
+"Nh" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -20055,7 +24431,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Hi" = (
+"Ni" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -20081,7 +24457,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Hj" = (
+"Nj" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -20107,7 +24483,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Hk" = (
+"Nk" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -20119,7 +24495,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Hl" = (
+"Nl" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -20143,7 +24519,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Hm" = (
+"Nm" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -20160,7 +24536,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Hn" = (
+"Nn" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -20172,7 +24548,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Ho" = (
+"No" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -20191,7 +24567,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Hp" = (
+"Np" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
},
@@ -20206,7 +24582,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Hq" = (
+"Nq" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/white/border,
/obj/machinery/firealarm{
@@ -20219,7 +24595,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Hr" = (
+"Nr" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/white/border,
@@ -20229,7 +24605,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Hs" = (
+"Ns" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/white/border,
@@ -20237,7 +24613,7 @@
/obj/item/weapon/reagent_containers/blood/OMinus,
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Ht" = (
+"Nt" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
@@ -20251,7 +24627,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery2)
-"Hu" = (
+"Nu" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20262,7 +24638,7 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"Hv" = (
+"Nv" = (
/obj/structure/railing{
dir = 8
},
@@ -20270,7 +24646,7 @@
/obj/random/junk,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"Hw" = (
+"Nw" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -20283,7 +24659,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/cmo)
-"Hx" = (
+"Nx" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
},
@@ -20292,11 +24668,11 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"Hy" = (
+"Ny" = (
/obj/structure/table/glass,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"Hz" = (
+"Nz" = (
/obj/structure/table/glass,
/obj/machinery/photocopier/faxmachine{
department = "CMO's Office"
@@ -20306,14 +24682,14 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"HA" = (
+"NA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/mob/living/simple_animal/cat/fluff/Runtime,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"HB" = (
+"NB" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20325,7 +24701,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"HC" = (
+"NC" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -20340,7 +24716,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"HD" = (
+"ND" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20348,20 +24724,20 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"HE" = (
+"NE" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"HF" = (
+"NF" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"HG" = (
+"NG" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20373,7 +24749,7 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"HH" = (
+"NH" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable/green{
@@ -20383,7 +24759,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"HI" = (
+"NI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -20396,7 +24772,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"HJ" = (
+"NJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/glass,
@@ -20408,7 +24784,7 @@
},
/turf/simulated/floor/plating,
/area/medical/surgery_hallway)
-"HK" = (
+"NK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -20417,7 +24793,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"HL" = (
+"NL" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
@@ -20426,11 +24802,11 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"HM" = (
+"NM" = (
/obj/structure/railing,
/turf/simulated/open,
/area/medical/surgery_hallway)
-"HN" = (
+"NN" = (
/obj/structure/railing{
dir = 8
},
@@ -20438,7 +24814,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"HO" = (
+"NO" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
},
@@ -20452,18 +24828,18 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"HP" = (
+"NP" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"HQ" = (
+"NQ" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/machinery/light,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"HR" = (
+"NR" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/structure/cable/green,
@@ -20474,7 +24850,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"HS" = (
+"NS" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
},
@@ -20487,7 +24863,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"HT" = (
+"NT" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
},
@@ -20499,7 +24875,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"HU" = (
+"NU" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/structure/cable/green,
@@ -20510,7 +24886,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"HV" = (
+"NV" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/machinery/camera/network/medbay{
@@ -20518,12 +24894,12 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"HW" = (
+"NW" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"HX" = (
+"NX" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/machinery/alarm{
@@ -20533,13 +24909,13 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"HY" = (
+"NY" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/machinery/light,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"HZ" = (
+"NZ" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2{
@@ -20557,7 +24933,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ia" = (
+"Oa" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20577,7 +24953,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ib" = (
+"Ob" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2,
@@ -20587,7 +24963,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ic" = (
+"Oc" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/structure/disposalpipe/segment{
@@ -20595,7 +24971,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Id" = (
+"Od" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/structure/disposalpipe/segment{
@@ -20609,7 +24985,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ie" = (
+"Oe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -20629,7 +25005,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"If" = (
+"Of" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2{
@@ -20645,7 +25021,7 @@
/obj/effect/floor_decal/corner/paleblue/bordercorner2,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ig" = (
+"Og" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -20655,7 +25031,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Ih" = (
+"Oh" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -20677,7 +25053,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Ii" = (
+"Oi" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
@@ -20692,7 +25068,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Ij" = (
+"Oj" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
@@ -20703,7 +25079,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Ik" = (
+"Ok" = (
/obj/effect/floor_decal/borderfloorwhite/corner{
dir = 4
},
@@ -20717,7 +25093,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Il" = (
+"Ol" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -20731,7 +25107,7 @@
/obj/machinery/camera/network/medbay,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Im" = (
+"Om" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -20743,7 +25119,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"In" = (
+"On" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -20760,7 +25136,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Io" = (
+"Oo" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -20769,7 +25145,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Ip" = (
+"Op" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -20788,7 +25164,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Iq" = (
+"Oq" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -20800,7 +25176,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Ir" = (
+"Or" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -20816,16 +25192,16 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Is" = (
+"Os" = (
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"It" = (
+"Ot" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Iu" = (
+"Ou" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 5
},
@@ -20843,7 +25219,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"Iv" = (
+"Ov" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/machinery/door/firedoor/glass,
@@ -20854,11 +25230,11 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/cmo)
-"Iw" = (
+"Ow" = (
/obj/structure/sign/nosmoking_1,
/turf/simulated/wall,
/area/medical/sleeper)
-"Ix" = (
+"Ox" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced/polarized{
@@ -20868,7 +25244,7 @@
},
/turf/simulated/floor/plating,
/area/medical/sleeper)
-"Iy" = (
+"Oy" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20894,7 +25270,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"Iz" = (
+"Oz" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -20904,7 +25280,7 @@
},
/turf/simulated/floor,
/area/medical/sleeper)
-"IA" = (
+"OA" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20930,7 +25306,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/medical/sleeper)
-"IB" = (
+"OB" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
},
@@ -20952,7 +25328,7 @@
/obj/structure/closet/l3closet/medical,
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"IC" = (
+"OC" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -20976,7 +25352,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"ID" = (
+"OD" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2,
@@ -21002,7 +25378,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"IE" = (
+"OE" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/structure/cable/green{
@@ -21024,7 +25400,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"IF" = (
+"OF" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2{
@@ -21049,7 +25425,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"IG" = (
+"OG" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -21077,7 +25453,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"IH" = (
+"OH" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2,
@@ -21101,7 +25477,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"II" = (
+"OI" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/structure/cable/green{
@@ -21125,7 +25501,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"IJ" = (
+"OJ" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/effect/floor_decal/borderfloorwhite/corner2,
@@ -21146,7 +25522,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"IK" = (
+"OK" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/obj/structure/cable/green{
@@ -21166,7 +25542,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"IL" = (
+"OL" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
},
@@ -21186,7 +25562,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgery_hallway)
-"IM" = (
+"OM" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -21207,7 +25583,7 @@
/obj/machinery/door/airlock/maintenance/medical,
/turf/simulated/floor,
/area/medical/surgery_hallway)
-"IN" = (
+"ON" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -21221,10 +25597,10 @@
/obj/structure/catwalk,
/turf/simulated/floor,
/area/maintenance/station/medbay)
-"IO" = (
+"OO" = (
/turf/simulated/wall,
/area/medical/recoveryrestroom)
-"IP" = (
+"OP" = (
/obj/structure/curtain/open/shower,
/obj/machinery/shower{
pixel_y = 10
@@ -21241,26 +25617,26 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"IQ" = (
+"OQ" = (
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"IR" = (
+"OR" = (
/obj/structure/toilet{
dir = 8
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"IS" = (
+"OS" = (
/obj/machinery/recharge_station,
/turf/simulated/floor/tiled/techfloor,
/area/medical/recoveryrestroom)
-"IT" = (
+"OT" = (
/turf/simulated/wall,
/area/medical/ward)
-"IU" = (
+"OU" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 9
},
@@ -21271,7 +25647,7 @@
/obj/item/device/healthanalyzer,
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"IV" = (
+"OV" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -21294,7 +25670,7 @@
/obj/item/bodybag/cryobag,
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"IW" = (
+"OW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/steeldecal/steel_decals4{
@@ -21311,7 +25687,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"IX" = (
+"OX" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 1
},
@@ -21338,7 +25714,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"IY" = (
+"OY" = (
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/medical,
/obj/effect/floor_decal/borderfloorwhite{
@@ -21349,7 +25725,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"IZ" = (
+"OZ" = (
/obj/machinery/button/windowtint{
id = "exam_room";
pixel_y = 26
@@ -21378,7 +25754,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"Ja" = (
+"Pa" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -21400,7 +25776,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"Jb" = (
+"Pb" = (
/obj/structure/table/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -21421,7 +25797,7 @@
/obj/item/weapon/cane,
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"Jc" = (
+"Pc" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin,
/obj/item/weapon/clipboard,
@@ -21444,10 +25820,10 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"Jd" = (
+"Pd" = (
/turf/simulated/wall,
/area/medical/patient_a)
-"Je" = (
+"Pe" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -21457,7 +25833,7 @@
},
/turf/simulated/floor,
/area/medical/patient_a)
-"Jf" = (
+"Pf" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -21482,10 +25858,10 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_a)
-"Jg" = (
+"Pg" = (
/turf/simulated/wall,
/area/medical/patient_b)
-"Jh" = (
+"Ph" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -21495,7 +25871,7 @@
},
/turf/simulated/floor,
/area/medical/patient_b)
-"Ji" = (
+"Pi" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -21520,10 +25896,10 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
-"Jj" = (
+"Pj" = (
/turf/simulated/wall,
/area/medical/patient_c)
-"Jk" = (
+"Pk" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -21533,7 +25909,7 @@
},
/turf/simulated/floor,
/area/medical/patient_c)
-"Jl" = (
+"Pl" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -21558,14 +25934,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_c)
-"Jm" = (
+"Pm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/medical/surgery_hallway)
-"Jn" = (
+"Pn" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -21574,7 +25950,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"Jo" = (
+"Po" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
},
@@ -21583,7 +25959,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"Jp" = (
+"Pp" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -21592,7 +25968,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"Jq" = (
+"Pq" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
@@ -21601,7 +25977,7 @@
},
/turf/simulated/floor/tiled/steel_grid,
/area/medical/recoveryrestroom)
-"Jr" = (
+"Pr" = (
/obj/structure/table/glass,
/obj/machinery/power/apc{
dir = 8;
@@ -21622,7 +25998,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"Js" = (
+"Ps" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -21633,7 +26009,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"Jt" = (
+"Pt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -21649,10 +26025,10 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"Ju" = (
+"Pu" = (
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"Jv" = (
+"Pv" = (
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/medical,
/obj/effect/floor_decal/borderfloorwhite{
@@ -21661,9 +26037,13 @@
/obj/effect/floor_decal/corner/paleblue/border{
dir = 4
},
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"Jw" = (
+"Pw" = (
/obj/machinery/light{
dir = 8
},
@@ -21687,7 +26067,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"Jx" = (
+"Px" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -21698,14 +26078,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"Jy" = (
+"Py" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/structure/bed/chair/office/light,
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"Jz" = (
+"Pz" = (
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop{
dir = 8
@@ -21721,7 +26101,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"JA" = (
+"PA" = (
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop,
/obj/effect/floor_decal/borderfloorwhite{
@@ -21747,7 +26127,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_a)
-"JB" = (
+"PB" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -21763,7 +26143,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_a)
-"JC" = (
+"PC" = (
/obj/structure/bed/chair{
dir = 8
},
@@ -21794,7 +26174,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_a)
-"JD" = (
+"PD" = (
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop,
/obj/effect/floor_decal/borderfloorwhite{
@@ -21820,7 +26200,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
-"JE" = (
+"PE" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -21836,7 +26216,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
-"JF" = (
+"PF" = (
/obj/structure/bed/chair{
dir = 8
},
@@ -21867,7 +26247,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
-"JG" = (
+"PG" = (
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop,
/obj/effect/floor_decal/borderfloorwhite{
@@ -21893,7 +26273,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_c)
-"JH" = (
+"PH" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -21909,7 +26289,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_c)
-"JI" = (
+"PI" = (
/obj/structure/bed/chair{
dir = 8
},
@@ -21940,7 +26320,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_c)
-"JJ" = (
+"PJ" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/medical{
name = "Rest Room";
@@ -21948,14 +26328,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"JK" = (
+"PK" = (
/obj/machinery/door/airlock/medical{
name = "Charging Room";
req_one_access = list()
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"JL" = (
+"PL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -21984,7 +26364,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"JM" = (
+"PM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -21996,7 +26376,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"JN" = (
+"PN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
@@ -22012,13 +26392,24 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"JO" = (
+"PO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"JP" = (
+"PP" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/ward)
+"PQ" = (
/obj/machinery/power/apc{
cell_type = /obj/item/weapon/cell/super;
dir = 8;
@@ -22037,14 +26428,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"JQ" = (
+"PR" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"JR" = (
+"PS" = (
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"JS" = (
+"PT" = (
/obj/structure/table/glass,
/obj/machinery/alarm{
dir = 8;
@@ -22060,7 +26451,7 @@
/obj/item/device/healthanalyzer,
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"JT" = (
+"PU" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -22078,12 +26469,12 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_a)
-"JU" = (
+"PV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/medical/patient_a)
-"JV" = (
+"PW" = (
/obj/item/weapon/bedsheet/medical,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -22099,7 +26490,7 @@
/obj/structure/bed/padded,
/turf/simulated/floor/tiled/white,
/area/medical/patient_a)
-"JW" = (
+"PX" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -22117,12 +26508,12 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
-"JX" = (
+"PY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
-"JY" = (
+"PZ" = (
/obj/item/weapon/bedsheet/medical,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -22138,7 +26529,7 @@
/obj/structure/bed/padded,
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
-"JZ" = (
+"Qa" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 8
@@ -22156,12 +26547,12 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_c)
-"Ka" = (
+"Qb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/medical/patient_c)
-"Kb" = (
+"Qc" = (
/obj/item/weapon/bedsheet/medical,
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
@@ -22177,7 +26568,7 @@
/obj/structure/bed/padded,
/turf/simulated/floor/tiled/white,
/area/medical/patient_c)
-"Kc" = (
+"Qd" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced{
@@ -22186,7 +26577,7 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/medical/recoveryrestroom)
-"Kd" = (
+"Qe" = (
/obj/structure/mirror{
pixel_y = 30
},
@@ -22195,7 +26586,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"Ke" = (
+"Qf" = (
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 4
},
@@ -22204,7 +26595,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"Kf" = (
+"Qg" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -22213,7 +26604,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"Kg" = (
+"Qh" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -22232,7 +26623,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"Kh" = (
+"Qi" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -22250,7 +26641,7 @@
/obj/effect/floor_decal/steeldecal/steel_decals4,
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"Ki" = (
+"Qj" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -22281,7 +26672,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"Kj" = (
+"Qk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -22301,7 +26692,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"Kk" = (
+"Ql" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
@@ -22312,7 +26703,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"Kl" = (
+"Qm" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -22321,13 +26712,13 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"Km" = (
+"Qn" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"Kn" = (
+"Qo" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 4
},
@@ -22340,7 +26731,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"Ko" = (
+"Qp" = (
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
},
@@ -22350,19 +26741,19 @@
/obj/structure/table/glass,
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"Kp" = (
+"Qq" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/pink/border,
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/medical,
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"Kq" = (
+"Qr" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/pink/border,
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"Kr" = (
+"Qs" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
@@ -22375,7 +26766,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/exam_room)
-"Ks" = (
+"Qt" = (
/obj/structure/table/glass,
/obj/item/weapon/clipboard,
/obj/item/weapon/paper_bin,
@@ -22391,7 +26782,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_a)
-"Kt" = (
+"Qu" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
@@ -22406,7 +26797,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_a)
-"Ku" = (
+"Qv" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
@@ -22422,7 +26813,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_a)
-"Kv" = (
+"Qw" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
@@ -22437,7 +26828,7 @@
/obj/item/weapon/pen,
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
-"Kw" = (
+"Qx" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
@@ -22452,7 +26843,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
-"Kx" = (
+"Qy" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
@@ -22468,7 +26859,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_b)
-"Ky" = (
+"Qz" = (
/obj/structure/table/glass,
/obj/effect/floor_decal/borderfloorwhite{
dir = 10
@@ -22483,7 +26874,7 @@
/obj/item/weapon/pen,
/turf/simulated/floor/tiled/white,
/area/medical/patient_c)
-"Kz" = (
+"QA" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
@@ -22498,7 +26889,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_c)
-"KA" = (
+"QB" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/effect/floor_decal/borderfloorwhite{
dir = 6
@@ -22514,14 +26905,14 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/patient_c)
-"KB" = (
+"QC" = (
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"KC" = (
+"QD" = (
/obj/machinery/washing_machine,
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"KD" = (
+"QE" = (
/obj/machinery/light/small,
/obj/structure/table/standard,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -22529,7 +26920,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"KE" = (
+"QF" = (
/obj/structure/table/standard,
/obj/random/soap,
/obj/random/soap,
@@ -22538,11 +26929,11 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"KF" = (
+"QG" = (
/obj/structure/undies_wardrobe,
/turf/simulated/floor/tiled/white,
/area/medical/recoveryrestroom)
-"KG" = (
+"QH" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -22560,7 +26951,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"KH" = (
+"QI" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/machinery/door/firedoor/glass,
@@ -22571,7 +26962,7 @@
},
/turf/simulated/floor/plating,
/area/medical/exam_room)
-"KI" = (
+"QJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/machinery/door/firedoor/glass,
@@ -22582,7 +26973,7 @@
},
/turf/simulated/floor/plating,
/area/medical/patient_a)
-"KJ" = (
+"QK" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/machinery/door/firedoor/glass,
@@ -22593,7 +26984,7 @@
},
/turf/simulated/floor/plating,
/area/medical/patient_b)
-"KK" = (
+"QL" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/machinery/door/firedoor/glass,
@@ -22604,14 +26995,14 @@
},
/turf/simulated/floor/plating,
/area/medical/patient_c)
-"KL" = (
+"QM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
/obj/structure/window/reinforced,
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/medical/recoveryrestroom)
-"KM" = (
+"QN" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -22627,7 +27018,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"KN" = (
+"QO" = (
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/medical,
/obj/effect/floor_decal/borderfloorwhite{
@@ -22642,7 +27033,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"KO" = (
+"QP" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -22659,12 +27050,12 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"KP" = (
+"QQ" = (
/obj/effect/floor_decal/borderfloorwhite,
/obj/effect/floor_decal/corner/paleblue/border,
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"KQ" = (
+"QR" = (
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/medical,
/obj/effect/floor_decal/borderfloorwhite{
@@ -22675,7 +27066,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
-"KR" = (
+"QS" = (
/obj/structure/grille,
/obj/machinery/door/firedoor/glass,
/obj/structure/window/reinforced,
@@ -22686,1104 +27077,174 @@
},
/turf/simulated/floor/plating,
/area/medical/ward)
-"KS" = (
+"QT" = (
/obj/effect/landmark/map_data/virgo3b,
/turf/space,
/area/space)
-"Lc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"Ll" = (
-/obj/structure/closet/crate,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Lm" = (
-/turf/simulated/mineral/vacuum,
-/area/maintenance/station/ai)
-"Lp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Lw" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Lx" = (
-/obj/structure/table/steel,
-/obj/item/weapon/flame/candle,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"LV" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/clipboard,
-/turf/simulated/floor/carpet/blue,
-/area/medical/psych)
-"LW" = (
-/turf/simulated/mineral/floor/cave,
-/area/maintenance/station/ai)
-"LZ" = (
-/obj/machinery/door/airlock/external{
- locked = 1
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Mb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
+"QU" = (
+/obj/effect/floor_decal/borderfloorblack/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/deployable/barrier,
/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"Md" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Mk" = (
-/turf/simulated/wall,
-/area/maintenance/station/ai)
-"Mz" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"MC" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/storage/emergency_storage/emergency3)
-"MG" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"MM" = (
-/obj/structure/table/rack{
dir = 1
},
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/medical,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"MU" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/structure/closet/emcloset,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"MW" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Nd" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Ne" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "32-4"
- },
-/turf/simulated/open,
-/area/maintenance/station/ai)
-"Nk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"Nm" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "QMLoad"
- },
-/obj/machinery/light,
-/turf/simulated/floor,
-/area/quartermaster/storage)
-"Nn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 9;
- icon_state = "intact"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"Np" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table/bench/standard,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"Nw" = (
-/obj/structure/table/standard,
-/obj/item/device/healthanalyzer,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 5
- },
-/obj/effect/floor_decal/corner/white/border{
- dir = 5
- },
-/obj/effect/floor_decal/borderfloorwhite/corner2{
- dir = 4
- },
-/obj/effect/floor_decal/corner/white/bordercorner2{
- icon_state = "bordercolorcorner2";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery)
-"NC" = (
-/obj/machinery/computer/operating{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery2)
-"NE" = (
-/obj/item/weapon/storage/laundry_basket,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Ob" = (
-/obj/machinery/alarm{
- frequency = 1441;
- pixel_y = 22
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Of" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 6
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"Og" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
-/obj/effect/floor_decal/steeldecal/steel_decals6,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"Oj" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Ok" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Oo" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- frequency = 1379;
- id_tag = "eva_port_maint_pump"
- },
-/obj/random/junk,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Op" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- icon_state = "map";
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Ou" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/paleblue/border,
-/obj/effect/floor_decal/borderfloor/corner2,
-/obj/effect/floor_decal/corner/paleblue/bordercorner2,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 1
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"OM" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"OX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- icon_state = "map";
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"Pc" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"Pg" = (
-/obj/structure/table/rack{
- dir = 1
- },
-/obj/random/maintenance/cargo,
-/obj/random/maintenance/clean,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Pk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Ps" = (
-/obj/structure/table/rack{
- dir = 1
- },
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/clean,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"PN" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/effect/floor_decal/borderfloorwhite{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/border{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/ward)
-"PS" = (
-/obj/machinery/atmospherics/portables_connector,
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"PU" = (
-/obj/structure/catwalk,
+/turf/simulated/floor/tiled/dark,
+/area/security/armory/blue)
+"QV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/light/small{
icon_state = "bulb1";
dir = 1
},
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"PV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Qa" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 1;
- frequency = 1379;
- icon_state = "map_vent";
- id_tag = "eva_port_maint_pump"
+/obj/machinery/alarm{
+ pixel_y = 22
},
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Qi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 5;
- icon_state = "intact"
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "Cell 1";
+ name = "Cell 1 Door";
+ pixel_x = -24;
+ pixel_y = 7;
+ req_access = list(1,2)
},
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Ql" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "Cell 2";
+ name = "Cell 2 Door";
+ pixel_x = -36;
+ pixel_y = 7;
+ req_access = list(1,2)
},
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "Cell 3";
+ name = "Cell 3 Door";
+ pixel_x = -24;
+ pixel_y = -7;
+ req_access = list(1,2)
},
-/obj/effect/floor_decal/steeldecal/steel_decals9{
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "Cell 4";
+ name = "Cell 4 Door";
+ pixel_x = -36;
+ pixel_y = -7;
+ req_access = list(1,2)
+ },
+/obj/effect/floor_decal/borderfloor/shifted{
+ icon_state = "borderfloor_shifted";
dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
+/obj/effect/floor_decal/corner/red/border/shifted{
+ icon_state = "bordercolor_shifted";
+ dir = 1
},
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/computer/general_air_control/fuel_injection{
+ device_tag = "riot_inject";
+ frequency = 1442;
+ name = "Riot Control Console"
},
-/obj/machinery/vending/snack,
/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"Qn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"Qq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10;
- icon_state = "intact"
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Qs" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10;
- icon_state = "intact"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"Qw" = (
+/area/security/observation)
+"QW" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
},
/obj/effect/floor_decal/corner/red/border{
dir = 4
},
-/obj/structure/table/standard,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
},
/turf/simulated/floor/tiled,
-/area/security/briefing_room)
-"QC" = (
-/obj/structure/table/steel,
-/obj/random/maintenance,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"QG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
+/area/security/hallway)
+"QX" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/catwalk,
/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"QY" = (
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"QZ" = (
-/obj/machinery/floodlight,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Rd" = (
-/obj/structure/railing,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Rs" = (
-/obj/random/junk,
-/turf/simulated/mineral/floor/cave,
-/area/maintenance/station/ai)
-"Rw" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"RA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals4{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"RB" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery)
-"RK" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"RV" = (
-/obj/effect/floor_decal/industrial/loading{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery)
-"RY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"RZ" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/mineral/vacuum,
-/area/maintenance/station/ai)
-"Sb" = (
-/obj/structure/catwalk,
-/obj/machinery/power/apc{
dir = 4;
- name = "east bump";
- pixel_x = 28
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ pixel_y = 0
},
/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Sd" = (
-/obj/structure/closet/crate,
-/obj/item/weapon/pickaxe,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Sq" = (
-/obj/structure/catwalk,
-/obj/machinery/alarm{
- frequency = 1441;
- pixel_y = 22
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Sr" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor,
-/area/storage/emergency_storage/emergency3)
-"St" = (
-/obj/structure/closet/crate/bin,
-/turf/simulated/floor/wood,
-/area/medical/psych)
-"SD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"SJ" = (
-/obj/structure/table/rack{
- dir = 1
- },
-/obj/random/maintenance/clean,
-/obj/random/maintenance/research,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"SQ" = (
-/obj/effect/floor_decal/industrial/warning{
+/area/maintenance/station/sec_upper)
+"QY" = (
+/obj/structure/railing{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"SS" = (
-/obj/machinery/door/airlock/external{
- locked = 1
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Ta" = (
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Ts" = (
/obj/structure/railing{
- dir = 4
- },
-/obj/structure/railing{
- dir = 1
- },
-/obj/random/junk,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"TS" = (
-/obj/random/trash_pile,
-/turf/simulated/mineral/floor/cave,
-/area/maintenance/station/ai)
-"Ua" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- icon_state = "map";
+ icon_state = "railing0";
dir = 1
},
/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Uc" = (
-/obj/effect/floor_decal/industrial/loading,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgery)
-"Ud" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Ue" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Uf" = (
-/obj/machinery/door/airlock/external{
- locked = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Uj" = (
-/obj/structure/railing{
- dir = 4
- },
+/area/maintenance/station/sec_upper)
+"QZ" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/railing{
+ icon_state = "railing0";
dir = 1
},
-/obj/structure/closet/crate,
/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Uq" = (
-/turf/simulated/floor/wood,
-/area/hallway/station/upper)
-"Ux" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"UG" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/range)
-"UK" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "packageSort1"
- },
-/obj/machinery/light{
+/area/maintenance/station/sec_upper)
+"Ra" = (
+/obj/structure/railing,
+/obj/structure/railing{
dir = 8
},
-/turf/simulated/floor/plating,
-/area/quartermaster/delivery)
-"UO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"Rb" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
},
/obj/structure/catwalk,
-/obj/machinery/firealarm{
- dir = 2;
- layer = 3.3;
- pixel_x = 0;
- pixel_y = 26
- },
/turf/simulated/floor,
-/area/maintenance/station/ai)
-"US" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Vk" = (
-/obj/structure/ladder{
- pixel_y = 16
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Vr" = (
-/obj/structure/table/rack{
- dir = 1
- },
-/obj/random/maintenance/engineering,
-/obj/random/maintenance/clean,
-/obj/random/maintenance/medical,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Vu" = (
-/obj/structure/table/rack{
- dir = 4
- },
-/obj/random/maintenance/medical,
-/obj/random/maintenance/research,
-/obj/item/weapon/storage/toolbox,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Vy" = (
+/area/maintenance/station/sec_upper)
+"Rc" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/railing{
- dir = 4
+ dir = 8
},
/obj/structure/railing{
+ icon_state = "railing0";
dir = 1
},
/turf/simulated/floor,
-/area/maintenance/station/ai)
-"VD" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- frequency = 1379;
- id_tag = "eva_port_maint_pump"
+/area/maintenance/station/sec_upper)
+"Rd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 8
},
+/turf/simulated/floor,
+/area/maintenance/station/sec_upper)
+"Re" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/medical,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/railing,
+/obj/random/tool,
/obj/machinery/light/small{
icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor,
-/area/maintenance/station/ai)
-"VP" = (
-/obj/structure/table/rack{
- dir = 4
- },
-/obj/random/maintenance/clean,
-/obj/random/maintenance/engineering,
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"VW" = (
-/obj/structure/table/rack{
- dir = 1
- },
-/obj/random/maintenance/research,
-/obj/random/maintenance/engineering,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Wf" = (
-/obj/structure/grille,
-/turf/space,
+/area/maintenance/station/sec_upper)
+"SW" = (
+/turf/simulated/mineral/vacuum,
/area/space)
-"WD" = (
-/obj/effect/floor_decal/borderfloor,
-/obj/effect/floor_decal/corner/red/border,
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"WS" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"WV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Xd" = (
-/obj/random/obstruction,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Xj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"Xk" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/catwalk,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Xn" = (
-/obj/item/weapon/coin/gold,
-/obj/item/weapon/coin/silver,
-/obj/item/weapon/bone/skull,
-/mob/living/simple_animal/hostile/mimic/crate,
-/turf/simulated/mineral/floor/cave,
-/area/maintenance/station/ai)
-"Xu" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 1;
- frequency = 1379;
- icon_state = "map_vent";
- id_tag = "eva_port_maint_pump"
- },
-/obj/random/junk,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Xv" = (
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"XD" = (
-/obj/structure/railing{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"XK" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 4
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9,
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/machinery/vending/fitness,
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"XO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/maintenance/station/ai)
-"XU" = (
-/obj/effect/floor_decal/rust,
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/turf/simulated/floor,
-/area/storage/emergency_storage/emergency3)
-"XV" = (
-/obj/structure/table/bench/wooden,
-/turf/simulated/floor/wood,
-/area/hallway/station/upper)
-"XY" = (
-/obj/structure/railing{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Ya" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/structure/sign/poster{
- pixel_x = -32
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"Yj" = (
-/obj/structure/closet/crate,
-/obj/machinery/alarm{
- frequency = 1441;
- pixel_y = 22
- },
-/obj/item/clothing/accessory/tie/horrible,
-/obj/random/drinkbottle,
-/obj/item/weapon/flame/lighter/random,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Ym" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Yp" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Yr" = (
-/obj/random/junk,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Yx" = (
-/obj/structure/closet/crate,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Yz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/station/ai)
-"YI" = (
-/turf/simulated/wall{
- can_open = 1
- },
-/area/maintenance/station/sec_upper)
-"YQ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/maintenance/station/ai)
-"YY" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor,
-/area/maintenance/station/sec_upper)
-"Zb" = (
-/obj/structure/grille,
-/turf/simulated/floor/airless,
-/area/mine/explored/upper_level)
-"Zh" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/structure/table/bench/standard,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"Zj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass/hidden/steel,
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"Zr" = (
-/obj/structure/closet/crate,
-/obj/random/maintenance/clean,
-/obj/random/junk,
-/obj/random/maintenance/medical,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"Zx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"ZC" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor,
-/area/maintenance/station/ai)
-"ZF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/obj/effect/floor_decal/corner/lightgrey/border{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals7,
-/obj/effect/floor_decal/steeldecal/steel_decals7{
- dir = 4
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"ZG" = (
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 9
- },
-/obj/effect/floor_decal/corner/lightgrey{
- dir = 6
- },
-/obj/machinery/camera/network/northern_star,
-/obj/structure/table/bench/standard,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hallway/station/upper)
-"ZR" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/airless,
-/area/security/nuke_storage)
-"ZS" = (
-/turf/simulated/floor/airless,
-/area/mine/explored/upper_level)
-"ZX" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/resleeving)
(1,1,1) = {"
aa
@@ -23925,7 +27386,7 @@ aa
aa
aa
aa
-KS
+QT
"}
(2,1,1) = {"
aa
@@ -27245,37 +30706,37 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ad
+ad
+ad
+ae
+ot
+ad
+ad
+ae
+ad
+ad
+ad
+ae
+ad
+ad
+ad
+ae
+ad
+ad
+ad
+ae
+ad
+ad
+ad
+ae
+ad
+ad
+ad
+ae
+ad
+ad
+ad
aa
aa
aa
@@ -27362,27 +30823,16 @@ aa
aa
aa
aa
-nA
-nA
-nA
-nA
-Wf
-nA
-nA
-nB
-nA
-nA
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ad
+ad
+ad
+ad
+gm
+ad
+ad
+ae
+ad
+ad
aa
aa
aa
@@ -27398,26 +30848,37 @@ aa
aa
aa
aa
+ae
+aa
+aa
+ae
aa
aa
aa
+ae
aa
aa
aa
+ae
aa
aa
aa
+ae
aa
aa
aa
+ae
aa
aa
aa
+ae
aa
aa
aa
+ae
aa
aa
+ae
aa
aa
aa
@@ -27504,7 +30965,7 @@ aa
aa
aa
aa
-nA
+ad
aa
aa
aa
@@ -27513,7 +30974,7 @@ aa
aa
aa
aa
-nA
+ad
aa
aa
aa
@@ -27529,37 +30990,37 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-nA
-nA
-nA
-nB
-nA
-nA
-nA
-nB
-nA
-nA
-nA
-nB
-nA
-nA
-nA
-nB
-nA
-nA
-nA
-aa
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ad
aa
aa
aa
@@ -27646,7 +31107,7 @@ aa
aa
aa
aa
-nA
+ad
aa
aa
aa
@@ -27671,37 +31132,37 @@ ab
ab
aa
aa
+ae
+aa
+aa
+ae
aa
aa
aa
+qc
+qv
+rd
+qc
+sL
+tG
+uF
+aa
+ae
aa
aa
aa
+ae
+aa
+AZ
+aa
+ae
aa
aa
aa
+ae
aa
aa
-nB
-aa
-aa
-nB
-aa
-aa
-aa
-nB
-aa
-aa
-aa
-nB
-aa
-aa
-aa
-nB
-aa
-aa
-nB
-aa
+ad
aa
aa
aa
@@ -27788,7 +31249,7 @@ aa
aa
aa
aa
-nA
+ad
aa
aa
aa
@@ -27809,41 +31270,41 @@ aa
aa
aa
ab
-ab
-ab
+dS
+dS
+dS
+dS
+my
+dR
+nD
+nW
+nW
+oW
+dR
+qc
+qw
+re
+sa
+fO
+tH
+uG
+vs
+ae
+aa
+xu
+xv
+xw
+xw
+xw
+xw
+xw
+xv
+xu
+aa
+ae
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ZS
-ZS
-ZS
-ZS
-Zb
-ZS
-ZS
-ZS
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nA
-aa
+ad
aa
aa
aa
@@ -27930,7 +31391,7 @@ aa
aa
aa
aa
-nA
+ad
aa
aa
aa
@@ -27951,10 +31412,38 @@ ab
ab
ab
ab
-ab
-ab
-ab
-ab
+dS
+kV
+dP
+lZ
+dP
+ne
+ey
+nX
+nX
+oX
+eJ
+qd
+qx
+rf
+sb
+sM
+tI
+uH
+vs
+ae
+aa
+xv
+xw
+xw
+xw
+xw
+xw
+xw
+xw
+xv
+aa
+ae
aa
aa
aa
@@ -27962,34 +31451,6 @@ aa
aa
aa
aa
-ZS
-ZS
-ZS
-ZS
-Zb
-ZS
-ZS
-ZS
-aa
-aa
-aa
-nB
-aa
-up
-aa
-nB
-aa
-aa
-aa
-nB
-aa
-aa
-nA
-aa
-aa
-aa
-aa
-aa
aa
aa
aa
@@ -28072,7 +31533,7 @@ aa
aa
aa
aa
-nA
+ad
aa
aa
aa
@@ -28092,41 +31553,41 @@ ab
ab
ab
ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ZS
-ZS
-ZS
-ZS
-ZS
-ZS
-ZS
-ZS
-ZS
-ZS
-ZS
-ZS
-ZS
-ZR
-rh
-ri
-ri
-ri
-ri
-ri
-rh
+dS
+dS
+an
+dP
+an
+dP
+nf
+nE
+nY
+ou
+oY
+eJ
+qd
+qy
rg
-ls
-ls
-ls
-ls
-ls
+sc
+sN
+gc
+uI
+vs
+vs
+vs
+xw
+xw
+ze
+zS
+Ba
+BV
+CT
+xw
+xw
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -28214,7 +31675,7 @@ aa
aa
aa
aa
-nA
+ad
aa
aa
aa
@@ -28234,44 +31695,44 @@ ab
ab
ab
ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ZS
-ZS
-ZS
-ZS
-ZS
-ZS
-ZS
-ZS
+dS
+kJ
+eL
+lu
+eL
+dP
+ng
+nF
+eG
+ov
+oZ
+fr
+qd
+fJ
rh
-ri
-ri
-ri
-ri
-ri
-ri
-ri
-rh
-ls
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+fM
+sO
+tJ
+qc
+vs
+vt
+wL
+xw
+xw
+zf
+zT
+Bb
+BW
+CU
+xw
+xw
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -28356,7 +31817,7 @@ aa
aa
aa
aa
-nB
+ae
aa
aa
aa
@@ -28365,52 +31826,52 @@ ab
ab
ab
ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ls
-qx
+ao
+ao
+ao
+ao
+ao
+ao
+ao
+ao
+ao
+ao
+ao
+dS
+kJ
+eL
+dQ
+ma
+dP
+nh
+ey
+eH
+ow
+oX
+pB
+qd
+qz
ri
-ri
-sI
-tv
-uq
-vv
-wm
-ri
-ri
-yK
-ls
-qw
-ls
-ls
+sd
+sP
+tK
+uG
+vt
+vt
+vt
+xw
+xw
+zg
+zT
+Bc
+BX
+CV
+xw
+xw
+vt
+we
+vt
+vt
ab
ab
ab
@@ -28498,7 +31959,7 @@ aa
aa
aa
aa
-nA
+ad
aa
aa
aa
@@ -28506,52 +31967,52 @@ ab
ab
ab
ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-gC
-gC
-gC
-gC
-gC
-gC
-gC
-gC
-gC
-gC
-gC
-gC
-gC
-gC
-ab
-ls
-ls
-ri
-ri
-sJ
-tw
-ur
-vw
-wn
-ri
-ri
-ls
-ls
-ls
-ls
+ao
+ao
+ao
+ao
+ao
+ao
+ao
+ao
+ao
+ao
+ao
+ao
+dS
+kJ
+kW
+lv
+mb
+ar
+et
+et
+nZ
+fa
+pa
+eJ
+qd
+qA
+rj
+se
+sM
+tL
+uH
+vt
+vt
+vt
+xw
+xw
+zh
+zT
+Bd
+BY
+CW
+xw
+xw
+vt
+vt
+vt
ab
ab
ab
@@ -28640,59 +32101,59 @@ aa
aa
aa
aa
-nA
-nA
+ad
+ad
ab
ab
ab
ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-gC
-gC
-gC
-ij
-ik
-iZ
-ik
-kk
-kM
-lt
-lV
-mV
-nC
-gC
-ab
-ls
-ls
-ri
-ri
-sK
-tw
-us
-vx
-wo
-ri
-ri
-qw
-ls
-ls
+ao
+ao
+ao
+ao
+bR
+iu
+ck
+cm
+jE
+QU
+jR
+ju
+ju
+ao
+dS
+kJ
+kX
+lw
+eo
+dP
+ni
+nG
+oa
+ox
+ff
+pC
+qd
+qB
+rk
+sf
+sQ
+tM
+uI
+vt
+we
+vt
+xv
+xw
+zi
+zU
+Be
+zU
+CX
+xw
+xv
+we
+vt
ab
ab
ab
@@ -28779,7 +32240,7 @@ aa
aa
aa
aa
-aa
+aO
aa
aa
aa
@@ -28787,53 +32248,53 @@ aa
ab
ab
ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-gC
-gC
-gC
-UG
-ik
-ik
-ik
-ik
-kN
-lu
-lW
-mW
-nD
-gC
-ab
-ls
-ls
-ri
-ri
-sL
-tw
-ut
-vy
-wp
-ri
-ri
-ls
-ls
+ao
+ao
+ao
+ao
+ao
+if
+iv
+iL
+jg
+jg
+QU
+iZ
+ju
+ju
+ko
+ko
+eT
+eT
+eT
+ep
+ep
+ep
+ep
+ep
+ep
+av
+pD
+qd
+qC
+rl
+qd
+qC
+qC
+qc
+vt
+vt
+vt
+xx
+xw
+zj
+xw
+Bf
+xw
+zj
+xw
+xx
+vt
ab
ab
ab
@@ -28918,10 +32379,10 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
+ad
+aa
+aa
+ae
aa
aa
aa
@@ -28929,53 +32390,53 @@ ab
ab
ab
ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-gC
-gC
-gC
-ij
-ik
-iZ
-ik
-iZ
-kM
-lv
-lX
-mX
-nE
-gC
-ab
-ls
-ls
-rh
-ri
-sM
-tx
-uu
-tx
-wq
-ri
-rh
-ls
-ls
+ao
+ao
+hd
+hA
+hS
+ig
+iw
+iM
+ja
+ja
+ja
+ja
+ja
+kc
+ko
+dg
+kK
+kY
+eT
+mc
+mx
+eu
+nH
+ob
+mh
+pb
+fs
+qe
+qD
+rm
+sg
+sR
+tN
+uJ
+vt
+vt
+vt
+we
+vt
+zk
+zV
+Bg
+BZ
+CY
+vt
+vt
+vt
ab
ab
ab
@@ -29060,10 +32521,10 @@ aa
aa
aa
aa
+ad
aa
aa
-aa
-aa
+ae
aa
aa
ab
@@ -29071,60 +32532,60 @@ ab
ab
ab
ab
+ao
+ao
+he
+hB
+hT
+ih
+ix
+ih
+jb
+jh
+ih
+jF
+bd
+ke
+ko
+kz
+kL
+kZ
+lx
+eq
+mA
+nj
+nI
+oc
+fd
+pc
+nN
+qe
+qE
+rm
+sh
+sS
+tO
+uJ
+vt
+vt
+vt
+vt
+vt
+zl
+zW
+Bh
+Ca
+CZ
+vt
+vt
+vt
ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-gC
-gC
-gC
-UG
-ik
-ik
-ik
-ik
-kO
-lw
-lY
-mY
-nF
-gC
-ab
-ls
-ls
-rj
-ri
-sN
-ri
-uv
-ri
-sN
-ri
-rj
-ls
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
+GT
+GT
+GT
+GT
+GT
+GT
ab
ab
ab
@@ -29202,71 +32663,71 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-dI
-dI
-dI
-dI
-dI
-dI
-dI
-dI
-dI
-gC
-gC
-ij
-ik
-iZ
-ik
-iZ
-kM
-lv
-lX
-mZ
-nG
-gC
-ab
-ab
-ls
-qw
-ls
-sO
-ty
-uw
-vz
-wr
-qw
-ls
-ls
-ab
-ab
-ab
+ae
+ae
+ae
+aJ
+ae
+ae
ab
ab
ab
+ai
+ai
+ai
+ao
+hf
+hC
+bx
+ii
+bd
+iN
+jc
+ji
+jv
+kd
+jS
+rA
+ko
+kA
+dz
+la
+eT
+md
+mB
+nk
+nJ
+eK
+mh
+fm
+pE
+fH
+qF
+rn
+si
+sT
+tP
+uJ
+vu
+tc
+tc
+tc
+vu
+uO
+zX
+Bi
+Cb
+sp
+we
+vt
ab
ab
+GT
+HJ
+HJ
+HJ
+HJ
+GT
ab
ab
ab
@@ -29344,71 +32805,71 @@ aa
aa
aa
aa
+ad
aa
aa
-aa
-aa
+aJ
aa
aa
ab
ab
-ab
-ab
-ab
-ab
-ab
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
+ai
+ai
+ai
+ai
+ai
+ai
+ai
dI
-ed
-ey
-eS
+dI
+iy
+iO
+jd
+dI
+dI
+jG
+jT
+ao
+ko
fk
fz
fW
-gn
-dI
-gC
-gC
-il
-ik
-ik
-ik
-ik
-kM
-lx
-lZ
-na
-nH
-gC
-ab
-ab
-ab
-ls
-ls
-sP
-tz
-ux
-vA
-ws
-xl
-xl
-xl
-xl
-xl
-AY
-AY
-ab
-ab
-ab
-ab
+eT
+me
+mB
+ev
+nK
+od
+mh
+pd
+pF
+fH
+qG
+ro
+sj
+sT
+tQ
+uJ
+vv
+wg
+wg
+xy
+yi
+wf
+zY
+Bj
+Ca
+Da
+Da
+Da
+Da
+Da
+GT
+HJ
+Iw
+IZ
+JP
+GT
ab
ab
ab
@@ -29486,79 +32947,79 @@ aa
aa
aa
aa
+ad
aa
aa
-aa
-aa
-aa
+aJ
+bh
aa
aa
ab
-ab
-ab
-ab
-ab
-ab
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
+ai
+ai
+aZ
+gz
+bg
+hg
+hD
dI
+ij
+ez
+cu
+iP
+jj
+dI
+jH
ee
-ez
-ez
-fl
+kf
+ko
+kB
fA
fX
-go
-dI
-gZ
-gC
-gC
-gC
-gC
-jE
-jE
-jE
-gC
-ma
-gC
-gC
-gC
-pd
-pd
-pd
-pd
-pd
-pd
-tA
-uy
-vB
-wt
-xm
-xQ
-yL
-wt
-wt
-AZ
-BQ
-CE
-CE
-DR
-CE
-CE
-CE
-Ge
-Ge
-Ge
-Hw
-Hw
-Ge
+ly
+mf
+mC
+mf
+nL
+mf
+oy
+pe
+ft
+qf
+qH
+rp
+sk
+sU
+tR
+uJ
+vw
+wh
+wh
+xz
+yj
+wf
+zZ
+Bk
+BC
+Da
+DE
+EA
+Fo
+Da
+GT
+HJ
+Ix
+Ix
+JQ
+Ix
+Ix
+Ix
+Me
+Me
+Me
+Nw
+Nw
+Me
aa
aa
aa
@@ -29628,79 +33089,79 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ao
-ao
+ae
+ae
+ae
aJ
-bc
-bn
+bh
+aa
+aa
+ab
+ai
+ai
+gn
+gA
+gN
+hh
+hE
+hU
+ez
+ez
bC
-ca
-cL
dn
+cL
+dI
dJ
ef
eA
eT
-eT
+kC
fB
fY
-gp
-gD
-ha
-hI
-im
-iI
-jb
-jb
-jb
-jb
-ly
-mb
-nb
-nI
-ov
-pe
-pT
-qy
-rk
-rV
-sQ
-tB
-uz
-vC
-wt
-xn
-xR
-yM
-zA
-wt
-Ba
-BQ
-CE
-Df
-DS
-Ex
-Fa
-FF
-Ge
-Gy
-GN
-Hx
-HO
-Iv
+eT
+mg
+mD
+nl
+nM
+oe
+mh
+pf
+pG
+qe
+qI
+rm
+sl
+sR
+tN
+uJ
+vx
+wh
+wM
+xA
+yk
+wf
+Aa
+Bl
+Ca
+Da
+DF
+EB
+Fp
+Gf
+GT
+HJ
+Ix
+Ja
+JR
+Kw
+KZ
+LF
+Me
+My
+MN
+Nx
+NO
+Ov
aa
aa
aa
@@ -29770,79 +33231,79 @@ aa
aa
aa
aa
+ad
+aa
+aa
+aJ
+bh
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ao
-ao
-aK
-bd
-bo
+ai
+ai
+go
+gB
+gO
+hi
+hF
+dI
bD
-cb
-cM
+fl
+cN
do
+dI
+dI
dK
-eg
+iR
eB
-eU
-fm
+eT
+eT
fC
-fZ
-gq
-gE
-hb
-hJ
-in
-hs
-hR
-jF
-kl
-kP
-hW
-mc
-hs
-nJ
-ow
-pf
-pU
-qz
-pU
-rW
-sR
-tC
-uA
-vD
-wu
-xo
-xS
-yN
-zB
-wt
-Bb
-BR
-CE
-Dg
-DT
-Ey
-Fb
-FG
-Ge
-Gz
-GO
-Hy
-HP
-Iv
+eT
+eT
+mh
+mh
+ep
+mh
+mh
+ep
+pg
+pH
+fH
+qe
+rq
+fH
+qe
+qe
+uJ
+vy
+wh
+wh
+xB
+yl
+uO
+Ab
+Bm
+Cd
+Db
+DG
+EC
+Fq
+Gg
+GT
+HK
+Ix
+Jb
+JS
+Kx
+La
+LG
+Me
+Mz
+MO
+Ny
+NP
+Ov
aa
aa
aa
@@ -29912,79 +33373,79 @@ aa
aa
aa
aa
+ad
+aa
+aa
+aJ
aa
aa
aa
aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ao
-ao
-aL
-bd
-bp
+ai
+ai
+gp
+gC
+gP
+bZ
+bv
+dI
+bS
+ez
bE
-bd
-cN
+ez
+fn
dp
dL
eh
eC
eV
-ez
+ip
fD
ga
-gr
-gF
-hc
-hK
-io
-iJ
-jc
-jG
-km
-kQ
lz
-md
-nc
-nK
-ox
-pg
-pV
-qA
-pV
-rX
-sS
-tD
-uB
-vE
-wv
-xp
-xS
-yO
-zC
-wt
-Ba
-BS
-CE
-Dh
-DU
-Ez
-Fc
-FH
-Ge
-GA
-GP
-Hz
-HP
-Iv
+mi
+mE
+nm
+lz
+lz
+lz
+ph
+pI
+aA
+qJ
+rr
+sm
+sV
+tS
+uK
+vz
+wh
+wh
+xC
+ym
+zm
+Ac
+Bn
+Ce
+Dc
+DH
+EC
+Fr
+Gh
+GT
+HJ
+Ix
+Jc
+JT
+Ky
+Lb
+LH
+Me
+MA
+MP
+Nz
+NP
+Ov
aa
aa
aa
@@ -30054,79 +33515,79 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ao
-ao
-aM
-bd
+ae
+ae
+ae
+aJ
+ae
+ae
+ae
+ae
+ai
+ai
+gq
+gD
+gQ
+bl
+hG
+dI
+il
bo
bF
cc
-cO
-ao
-dI
+bq
+dp
+jI
+bI
+cR
ei
-ei
-ei
-fn
-ei
-ei
-ei
-gG
-hd
-hL
-ip
-iK
-iK
-iL
-iL
-iL
+jK
+QW
+lb
lA
-me
-iL
-iK
-oy
-ph
-pW
-qB
-pW
-rY
-sQ
-tE
-uC
-vF
-ww
-xq
-xS
-yN
-zD
-wt
-Ba
-BT
-CE
-Di
-DV
-EA
-Fc
-FI
-Ge
-GB
-GQ
-HA
-HQ
-Ge
+mj
+mF
+nn
+nN
+nN
+fe
+pi
+fu
+aG
+lA
+rs
+lA
+DO
+tT
+uL
+vA
+wh
+wh
+xD
+yn
+uO
+Ad
+Bo
+Cf
+Dd
+DI
+EC
+Fq
+Gi
+GT
+HJ
+Ix
+Jd
+JU
+Kz
+Lb
+LI
+Me
+MB
+MQ
+NA
+NQ
+Me
ab
aa
aa
@@ -30196,79 +33657,79 @@ aa
aa
aa
aa
+ad
+aa
+aa
+aJ
aa
aa
aa
aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ao
-ao
-aN
-be
+ai
+ai
+gr
+gE
+gO
+hi
+hH
+dI
+dI
+bq
bq
-bG
cd
-cP
-ao
+dI
+dp
dM
ej
-ej
-eW
-eW
-eW
-ej
-ej
-gH
-he
-hM
-iq
-iK
-jd
-jH
-kn
-kR
+cP
+cP
+jL
+eD
+cP
lB
-mf
-nd
-nL
-iK
-pi
-pW
-qC
-pW
-rZ
-pd
-tF
-uC
-vC
-wx
-xr
-xT
-yP
-zE
-wt
-Ba
-BU
-CE
-Dj
-DW
-EB
-ZX
-FJ
-Ge
-GC
-GR
-HB
-HR
-Ge
+lB
+mG
+no
+as
+as
+oz
+oz
+fv
+oz
+oz
+oz
+oz
+sX
+tU
+uM
+vB
+wh
+wM
+xE
+yk
+wf
+Ae
+Bo
+Ca
+De
+DJ
+ED
+Fs
+Gj
+GT
+HL
+Ix
+Je
+JV
+KA
+Lc
+LJ
+Me
+MC
+MR
+NB
+NR
+Me
ab
ab
aa
@@ -30338,79 +33799,79 @@ aa
aa
aa
aa
+ad
aa
aa
-aa
-aa
-aa
+aJ
+bh
aa
ab
ab
-ab
-ab
-ab
ai
ai
-ai
-ai
-ai
-ai
-ao
+gs
+gF
+gP
+hj
+hI
+hV
+ah
+ch
bH
ce
cQ
-ao
-dM
+jw
+cx
ek
-eD
-eW
-eW
-eW
-gb
-gs
-gH
-hf
-hL
-ir
-iK
-je
-jI
-ko
-ko
-ko
-mg
-ne
-nM
+cP
+QV
+kD
+kO
+cP
+lC
+lC
+lC
+lC
+nO
+nN
oz
pj
-pX
-qD
-rl
-sa
-sQ
-tG
-uD
-vG
-wy
-wy
-wy
-wy
-wy
-wy
-wy
-wy
-CE
-Dk
-DX
-EC
-Fd
-FK
-Ge
-GD
-GS
-HC
-HS
-Ge
+pJ
+qg
+qK
+rt
+oz
+sY
+tV
+uN
+vC
+wh
+wh
+xF
+yo
+wf
+Af
+Bp
+Cg
+Df
+Df
+Df
+Df
+Df
+Df
+Df
+Ix
+Jf
+JW
+KB
+Ld
+LK
+Me
+MD
+MS
+NC
+NS
+Me
ab
ab
aa
@@ -30480,79 +33941,79 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+ae
+ae
+ae
+aJ
+bh
aa
ab
ab
-ab
-ab
-ab
-ai
-ai
-ai
-ai
-ai
ai
ai
+gn
+gA
+gN
+hk
+hE
+hW
+al
+ci
bI
-ce
+cr
cR
-ao
-dM
-ej
+jx
+cR
+iT
eD
-eW
-eW
-eW
-gb
-ej
-gH
-hg
-hN
-is
-iK
-jf
-jJ
-jJ
-jJ
-jJ
-jJ
-jK
+kN
+kE
+wR
+eD
+lC
+lC
+lC
+lC
+nO
nN
-oA
-pk
-pY
-qE
-rm
-sb
-sQ
-tH
-uE
-vH
-wz
-xs
-xU
-yQ
-zF
-Ar
-Ar
-Ar
-CE
-Dl
-DY
-ED
-Dl
-Dl
-Ge
-GE
-GT
-GE
-Ge
-Ge
+oz
+fo
+pK
+pL
+qL
+fL
+fN
+sZ
+tW
+uO
+vD
+wi
+wN
+xG
+yp
+wf
+Aa
+Bq
+Ch
+Dg
+DK
+EE
+Ft
+Gk
+Gk
+Gk
+Ix
+Jg
+JX
+KC
+Jg
+Jg
+Me
+ME
+MT
+ME
+Me
+Me
ab
ab
ab
@@ -30622,85 +34083,85 @@ aa
aa
aa
aa
+ad
aa
aa
+aJ
+bh
aa
-aa
-aa
-aa
-ab
-ab
-ab
ab
ab
ai
ai
+gt
+gG
+bi
ap
az
-aO
ai
-ai
-bH
+bU
+iz
+iQ
cf
-cR
-ao
-dM
-ej
+ct
+ct
+ct
+ct
+cU
eD
-eW
-eW
-eW
-gb
-ej
-gI
-hh
-hO
-ir
-iL
-jg
-jJ
-kp
-kS
-kS
-mh
-jJ
-nO
-iK
-pl
-pZ
-qF
-rn
-sc
-pd
-tI
-uF
-vI
-wA
-xt
-xV
-yR
-zG
-Ar
-Ar
-Ar
-CF
-Dm
-DZ
-EE
-Fe
-FL
-Gf
-GF
-GU
-Fe
-HT
-CF
-IO
-IO
-IO
-Kc
-Kc
-IO
+eD
+eD
+cU
+lD
+lD
+mH
+lD
+lD
+mH
+oz
+pk
+pL
+fI
+qM
+ru
+oz
+ta
+pG
+uP
+uP
+uP
+uP
+uP
+uP
+uP
+Ag
+Br
+Ci
+Dh
+DL
+EF
+Fu
+Gk
+Gk
+Gk
+Iy
+Jh
+JY
+KD
+Le
+LL
+Mf
+MF
+MU
+Le
+NT
+Iy
+OO
+OO
+OO
+Qd
+Qd
+OO
aa
aa
aa
@@ -30764,85 +34225,85 @@ aa
aa
aa
aa
+ad
aa
aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
+aJ
+ae
+ae
+cv
+cv
ai
ai
-aq
-aA
-aO
ai
ai
-ao
+ai
+ai
+ai
+ai
+ai
+ci
+iR
cg
-ao
-ao
-dM
-el
-eD
-eW
-eW
-eW
+jk
+jk
+jk
+jk
+kg
+jk
+jk
+jk
gb
-ej
-gI
-hi
-hP
-ir
-iL
-jh
-jJ
-kq
-kS
-kS
-mi
-nf
-nP
-iK
-pm
-qa
-qG
-ro
-sd
-pd
-tJ
-uC
-vJ
-wB
-wy
-wy
-wy
-wy
-wy
-wy
-wy
-CF
-Dn
-Ea
-EF
-Ff
-Ff
-Ff
-Ff
-GV
-HD
-HU
-CF
-IP
-Jn
-IO
-Kd
-KB
-KL
+cT
+cT
+mI
+jk
+jk
+of
+oA
+oA
+fw
+oA
+oA
+oA
+oA
+tb
+tT
+uQ
+vE
+wj
+wO
+xH
+yq
+zn
+Ae
+Bo
+Cj
+Di
+Df
+Df
+Df
+Df
+Df
+Df
+Iy
+Ji
+JZ
+KE
+Lf
+Lf
+Lf
+Lf
+MV
+ND
+NU
+Iy
+OP
+Pn
+OO
+Qe
+QC
+QM
aa
aa
aa
@@ -30906,85 +34367,85 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ai
-ai
-ar
+ae
+ae
+ae
+aJ
+cv
+cv
+cv
+gd
+gh
+gf
+gf
+gH
+gR
+hl
aB
aP
-ai
-ai
-bJ
-ch
+hp
+cj
+iR
+cg
cS
-aj
-dM
-em
-eD
-eW
-eW
-eW
-gb
-ej
-gI
-hh
-hQ
-it
-iL
-ji
-jJ
-kp
-kS
-kS
-mh
-jJ
-nQ
-iK
-pn
-pW
-qH
-rp
-se
-pd
-tK
-uG
-vK
-wC
-xu
-xW
-yS
-zH
-As
-Bc
-BV
-CF
-Dn
-Ea
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+cV
+cV
+jk
+jk
+jk
+og
+oB
+pl
+pM
+qh
+fK
+rv
+qQ
+qP
+tX
+uR
+vF
+wk
+wP
+xI
+yr
+zo
+Ae
+Bs
+Ck
+Dj
+DM
EG
-Fg
-Fh
-Gg
-Fh
-GW
-HE
-HV
-CF
-IQ
-Jo
-JJ
-Ke
-KC
-KL
+Fv
+Gl
+GU
+HM
+Iy
+Ji
+JZ
+KF
+Lg
+Lh
+Mg
+Lh
+MW
+NE
+NV
+Iy
+OQ
+Po
+PJ
+Qf
+QD
+QM
aa
aa
aa
@@ -31048,85 +34509,85 @@ aa
aa
aa
aa
+ad
aa
aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ai
-ai
-as
+aJ
+cv
+cv
+cv
+ge
+gf
+gk
+gu
+gk
+gR
+hm
aC
aQ
-aQ
+hp
br
bK
-ci
+cf
cT
-aj
-dM
-ej
-eD
-eW
-eW
-eW
-gb
-ej
-gI
-hj
-hR
-ir
-iL
-jj
-jJ
-kq
-kS
-lC
-mi
-jJ
-nR
-iK
-po
-pW
-qH
-pW
-sf
-pd
-tL
-uC
-vK
-wD
-xv
-xX
-yT
-zI
-At
-Bd
-BW
-CF
-Do
-Eb
+jy
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+og
+oC
+pm
+pM
+qi
+qN
+rw
+qQ
+pg
+tY
+uS
+vG
+wl
+wQ
+wl
+ys
+zp
+Ae
+Bo
+Ck
+Dk
+DN
EH
-Fh
-Fh
-Fh
-Fh
-GX
-Fh
-HW
-Iw
-IR
-Jp
-IO
-Kf
-KD
-IO
+Fw
+Gm
+GV
+HN
+Iy
+Jj
+Ka
+KG
+Lh
+Lh
+Lh
+Lh
+MX
+Lh
+NW
+Ow
+OR
+Pp
+OO
+Qg
+QE
+OO
ab
aa
aa
@@ -31190,85 +34651,85 @@ aa
aa
aa
aa
+ad
aa
aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ai
-ai
-at
-aD
+aJ
+cv
+cv
+cv
+gf
+gf
+gf
+gv
+gf
+gR
+hn
+aC
aR
bf
bs
bL
-cj
-cU
-aj
-dM
-ej
-eD
-eW
-eW
-eW
-gb
-ej
-gI
-hk
-hL
-ir
-iL
+cf
+cT
+jy
jk
-jJ
-kp
-kS
-lD
-mh
-jJ
-nS
-iK
-pp
-qb
-qI
-rq
-WD
-pd
-tM
-uH
-vL
-wD
-xw
-xY
-yU
-zJ
-Au
-Be
-BX
-CG
-Dp
-Ec
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+of
+oD
+pn
+DP
+qi
+qN
+rx
+qQ
+td
+pG
+mH
+uP
+wm
+sW
+xJ
+uP
+uP
+Ah
+Bt
+Cc
+Dk
EI
-Fi
-FM
-Fi
-FM
-GY
-FM
-HW
-CF
-IO
-IO
-IO
-Kg
-KE
-IO
+Gn
+Fx
+GS
+GW
+HO
+Iz
+Jk
+Kb
+KH
+Li
+LM
+Li
+LM
+MY
+LM
+NW
+Iy
+OO
+OO
+OO
+Qh
+QF
+OO
ab
ab
aa
@@ -31332,88 +34793,88 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ai
-ai
+ae
+ae
+ae
+aJ
+cv
+cv
+cv
+ge
+gf
+gk
+ba
+gI
+gS
au
aD
-aP
-ai
-ai
+bG
+ca
+iA
bM
-ck
+cg
cV
-aj
-dM
-ek
-eD
-eW
-eW
-eW
-gb
-gs
-gH
-hl
-hL
-ir
-iK
-jl
-jK
-jJ
-jJ
-jJ
-jJ
-jJ
-nT
-iK
-pq
-pW
-qJ
-pW
-sg
-pd
-tN
-uI
-vK
-wD
-xx
-xZ
-yV
-zK
-Av
-Bf
-BY
-CF
-Dq
-Ed
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+jk
+cS
+cS
+jk
+jk
+jk
+oh
+oE
+po
+pO
+qj
+qO
+pO
+sn
+tf
+tW
+uT
+vH
+wn
+wS
+wn
+yt
+zq
+Ae
+Bs
+Ck
+Dk
EJ
-Fj
-FN
-Gh
-FN
-GZ
-FN
-HX
-CF
-IS
-Jq
-JK
-Kh
-KF
-IO
+Go
+Fy
+HI
+GX
+HP
+Iy
+Jl
+Kc
+KI
+Lj
+LN
+Mh
+LN
+MZ
+LN
+NX
+Iy
+OS
+Pq
+PK
+Qi
+QG
+OO
ab
ab
-ls
+vt
aa
aa
aa
@@ -31474,88 +34935,88 @@ aa
aa
aa
aa
+ad
aa
aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ai
-ai
-av
-aD
+aJ
+cv
+cv
+cv
+gf
+gf
+gf
+gw
+gf
+gR
+ho
+hJ
aS
-ai
-ai
+bf
+iB
bN
-cl
-cV
-aj
-dM
-ej
-eD
-eW
-eW
-eW
-gc
-gt
-gJ
-hk
-hL
-ir
-iK
-jm
+cg
+jk
+jk
jJ
-jJ
-jJ
-jJ
-jJ
-jJ
-nU
-iK
-pr
-pW
-pW
-pW
-sh
-pd
-tO
-uG
-vK
-wE
-wE
-ya
-yW
-zL
-Aw
-Bg
-BZ
-CF
-Dr
-Ed
-EJ
-Fk
-FN
-Gi
-FN
-Ha
-FN
-HY
-CF
-IT
-IT
-IT
-Ki
-IT
-IT
-IT
-IT
-ls
+jk
+jk
+jk
+jk
+jk
+gb
+cT
+cT
+mJ
+jk
+jk
+oh
+oF
+pp
+pP
+qi
+mz
+ry
+qQ
+tZ
+ua
+uU
+vI
+wo
+wT
+xK
+yu
+zq
+Ai
+Bs
+Cm
+Dl
+DQ
+EK
+Fz
+Gp
+GY
+HQ
+Iy
+Jm
+Kc
+KI
+Lk
+LN
+Mi
+LN
+Na
+LN
+NY
+Iy
+OT
+OT
+OT
+Qj
+OT
+OT
+OT
+OT
+vt
aa
aa
aa
@@ -31616,88 +35077,88 @@ aa
aa
aa
aa
+ad
aa
aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ai
-ai
+aJ
+cv
+cv
+cv
+ge
+gi
+gk
+gf
+gk
+gR
aw
aE
-aS
-ai
-ai
+hX
+bf
+ci
bO
-cm
+cf
cW
-aj
-dM
-ej
-eD
-eW
-eW
-eW
-eW
-eW
-gI
-hm
-hL
-iu
-iK
-jn
-jL
-jJ
-jJ
-lE
-mj
-ng
-nV
-oB
-ps
-pW
-pW
-rr
-si
-pd
-tP
-uG
-vM
-wF
-wD
-yb
-yX
-zM
-yT
-Bh
-Ca
-CF
-Ds
-Ed
-EJ
-Fl
-FO
-Fl
-FO
-Hb
-FO
-HW
-Ix
-IU
-Jr
-JL
-Kj
-KG
-KM
-KO
-KR
-ls
+cW
+cf
+cW
+cW
+cf
+ct
+ct
+cf
+lD
+lD
+mH
+lD
+lD
+of
+oh
+oh
+oh
+qk
+qQ
+qQ
+oA
+tg
+ub
+uV
+vJ
+wp
+wU
+xL
+yv
+zq
+Aj
+Bs
+Cn
+Dk
+DR
+EL
+FA
+Gq
+GZ
+HR
+Iy
+Jn
+Kc
+KI
+Ll
+LO
+Ll
+LO
+Nb
+LO
+NW
+Ox
+OU
+Pr
+PL
+Qk
+QH
+QN
+QP
+QS
+vt
aa
aa
aa
@@ -31758,89 +35219,89 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ai
-ai
-ai
-ai
-ai
-ai
-aj
+ae
+ae
+ae
+aJ
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+cv
+hp
+hp
+hp
+hp
+iC
bP
cn
cX
-aj
-dM
-ej
-eD
-eW
-eW
-eW
-eW
-eW
-gK
-hn
-hS
-iv
-iM
-jo
-jM
-kr
-kT
-lF
-mk
-jJ
-nW
-iK
-pt
-pW
-pW
-rs
-sj
-pd
-tQ
-uJ
-tY
-wG
-xy
-yc
-yY
-zN
-Ax
-Bi
-Cb
-CH
-Dt
-Ee
-EK
-Fm
-FP
-FP
-FP
-Hc
-HF
-HZ
-Ix
-IV
-Js
-JM
-Kk
-Ju
-Ju
-KP
-KR
-ls
-ls
+jz
+ik
+cM
+cM
+kq
+cM
+cM
+lc
+lE
+lE
+mK
+np
+nP
+oi
+lE
+lE
+pQ
+ql
+qR
+lE
+aK
+th
+uc
+aM
+vK
+wp
+wn
+xL
+yw
+zr
+Ak
+Bu
+Co
+Dm
+DS
+EM
+FB
+Gr
+Ha
+HS
+IA
+Jo
+Kd
+KJ
+Lm
+LP
+LP
+LP
+Nc
+NF
+NZ
+Ox
+OV
+Ps
+PM
+Ql
+Pu
+Pu
+QQ
+QS
+vt
+vt
aa
aa
aa
@@ -31900,89 +35361,89 @@ aa
aa
aa
aa
+ad
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+aJ
+aJ
+aJ
+aJ
+SW
+SW
ab
ab
+aU
aj
-aj
-aj
-aj
-aj
-aj
-aj
+bn
+hK
+hY
+in
+iD
bQ
co
-aj
-aj
-dM
-ej
-eD
-eW
-eW
-eW
-eW
-eW
-gI
-ho
-hT
-iw
-iK
-jp
-jN
-ks
-kU
-lG
-ml
-Qw
-nX
-iK
-pu
-qc
-qK
-rt
-sk
-pd
-tR
-uK
-vN
-wH
-xz
-yd
-yZ
-zO
-Ay
-yZ
-Cc
-CI
-Du
-Ef
-EL
-Fn
-FQ
-FQ
-FQ
-Hd
-HG
-Ia
-Iy
-IW
-Jt
-JN
-Kl
-Ju
-Ju
-KP
-KR
-ls
-ls
+jl
+jA
+im
+jU
+cY
+kr
+kr
+kP
+ld
+lF
+mk
+mL
+nq
+nQ
+oj
+oG
+pq
+pR
+qm
+qS
+rz
+aL
+ti
+ud
+aN
+vL
+wq
+wV
+xM
+yx
+zs
+Al
+Bv
+Cp
+Dn
+DT
+EN
+FC
+Gs
+EN
+HT
+IB
+Jp
+Ke
+KK
+Ln
+LQ
+LQ
+LQ
+Nd
+NG
+Oa
+Oy
+OW
+Pt
+PN
+Qm
+Pu
+Pu
+QQ
+QS
+vt
+vt
aa
aa
aa
@@ -32042,90 +35503,90 @@ aa
aa
aa
aa
+ad
aa
aa
aa
+ae
aa
-aa
-aa
-aa
-aa
-aa
+aJ
+SW
+SW
ab
ab
-ab
-ab
-aj
-aj
+aU
+gT
+hq
+hL
aT
-bg
+in
bt
-bR
-cp
-cY
+iR
+je
+cq
dq
-dM
-ej
-ej
+je
+jV
+je
+cq
+dq
+je
+le
+eX
+aq
eX
eX
eX
+at
eX
-eX
-gJ
-hp
-hO
-ix
-iN
-iN
-iN
-iN
-kV
-lH
-iN
-iN
-nY
-iK
-pd
-pd
-pd
-pd
-pd
-pd
-sV
-uL
-vO
-wI
-wD
-ye
-za
-zP
-Az
-Bj
-Cd
-CJ
-Dv
-Eg
-EM
-Fo
-FR
-Gj
-GG
-He
-EJ
-Ib
-Ix
-IX
-Ju
-JO
-Km
-Ju
-Ju
-KP
-KR
-ls
-ls
-ls
+pr
+lC
+lC
+mH
+rB
+mH
+tj
+ue
+mH
+uP
+uP
+uP
+uP
+uP
+zt
+Am
+Bw
+Cq
+Dk
+DU
+EO
+FD
+Gt
+Hb
+HU
+IC
+Jq
+Kf
+KL
+Lo
+LR
+Mj
+MG
+Ne
+KI
+Ob
+Ox
+OX
+Pu
+PO
+Qn
+Pu
+Pu
+QQ
+QS
+vt
+vt
+vt
aa
aa
aa
@@ -32188,86 +35649,86 @@ aa
aa
aa
aa
+ae
aa
-aa
-aa
-aa
-aa
+aJ
+SW
+SW
ab
ab
-ab
-ab
-aj
-aj
aU
-bh
-bh
-bh
+gU
+hr
+hM
+hr
+io
+iE
+iR
cq
-bh
+jm
+dr
dr
-dM
el
-ej
-ej
-ej
-ej
-ej
-ej
-gI
-hq
-hU
-iy
-iN
-jq
-jO
-kt
-kW
-lI
-mm
-iN
-nZ
-oC
-pv
-qd
-qL
-ru
-sl
-sT
-sU
-uM
-vP
-wJ
-xA
-xB
-zb
-zQ
-AA
-zb
-xB
-CK
-Dw
-Dw
-EN
-Fp
-Fp
-Dw
-Dw
-Hf
-EJ
-Ic
-Ix
-IY
-PN
-Jv
-Kn
-Jv
-KN
-KQ
-KR
-ls
-ls
-ls
+kh
+ks
+du
+je
+dO
+lG
+ml
+mM
+nr
+nR
+ok
+oH
+eX
+lC
+lC
+mH
+te
+mH
+mH
+mH
+mH
+vM
+wr
+wW
+xN
+yy
+yz
+An
+Bx
+Cr
+Do
+Dp
+EP
+FE
+Gu
+EP
+Dp
+ID
+Jr
+Jr
+KM
+Lp
+Lp
+Jr
+Jr
+Nf
+KI
+Oc
+Ox
+OY
+Pv
+PP
+Qo
+PP
+QO
+QR
+QS
+vt
+vt
+vt
aa
aa
aa
@@ -32330,86 +35791,86 @@ aa
aa
aa
aa
+aO
aa
-aa
-aa
-aa
+aJ
+SW
ab
ab
ab
-ab
-ab
-aj
-aj
+aU
+bj
+hr
+hN
aV
-bh
-bh
-bh
-cq
-bh
-dr
-dM
-ej
-ej
-ej
-ej
-ej
-ej
-ej
-gI
-hq
-hV
-iz
-iO
-jr
-jP
-jP
-kX
-jP
-mn
-iN
-oa
-oD
-pw
-qe
-qM
-rv
-sm
-rv
-tS
-uN
-vQ
-wK
-xB
-yf
-zc
-zR
-AB
-Bk
-Ce
-CK
-Dx
-Eh
-EO
-Fq
-FS
-Gk
-Dw
-Hg
-EJ
-Ic
-CF
-IT
-IT
-IT
-IT
-IT
-IT
-IT
-IT
-ls
-ls
-ls
+cb
+iF
+iR
+cs
+jn
+jB
+jM
+jW
+jM
+kt
+kF
+je
+lf
+lH
+mm
+mm
+ns
+mO
+ol
+oI
+eX
+lC
+lC
+mH
+rC
+so
+tk
+uf
+uW
+vN
+ws
+uW
+xO
+uW
+zu
+Ao
+By
+Cs
+Dp
+DV
+EQ
+FF
+Gv
+Hc
+HV
+ID
+Js
+Kg
+KN
+Lq
+LS
+Mk
+Jr
+Ng
+KI
+Oc
+Iy
+OT
+OT
+OT
+OT
+OT
+OT
+OT
+OT
+vt
+vt
+vt
aa
aa
aa
@@ -32474,84 +35935,84 @@ aa
aa
aa
aa
-aa
-aa
+aJ
+SW
ab
ab
ab
-ab
-ab
-aj
-aj
-aW
-bh
-bh
-bh
-cq
-bh
-dr
-dM
-ej
-ej
-ej
-ej
-ej
-ej
-ej
-gI
+aU
+gV
hr
-hW
-iA
-iP
-js
-jQ
+hM
+aW
+aU
+iG
+iS
+je
+jo
+jC
+jN
+jX
+da
ku
-kY
-jP
-mo
-iN
-ob
-oE
-ob
-ob
-qN
-ob
-ob
-sU
-sU
-uT
-sq
-vK
-xC
-yg
-zd
-zS
-AC
-zS
-Cf
-CL
-Dy
-Ei
-Ei
-Fr
-FT
-Gl
-Fp
-Hh
-EJ
-Id
-Iz
-IZ
-Jw
-JP
-Ko
-KH
-ls
-ls
-ls
-ls
-ls
-ls
+kG
+je
+lg
+lH
+mn
+mN
+nt
+nS
+om
+oJ
+pr
+lC
+lC
+mH
+rD
+af
+tl
+ug
+tl
+tl
+wt
+tl
+tl
+yz
+yz
+Ap
+Bz
+Ck
+Dq
+DW
+ER
+FG
+Gw
+FG
+HW
+IE
+Jt
+Kh
+Kh
+Lr
+LT
+Ml
+Lp
+Nh
+KI
+Od
+Oz
+OZ
+Pw
+PQ
+Qp
+QI
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -32616,85 +36077,85 @@ aa
aa
aa
aa
-aa
-aa
+aJ
+aJ
ab
ab
ab
-ab
-ab
-aj
-aj
+aU
+gW
+hr
+hM
aX
-bh
+in
bu
-bS
-cr
-bh
+iR
+cq
+jp
ds
-dM
-ej
+jO
+cO
eE
-ej
-ej
-ej
-eE
-ej
-gH
-hk
-hX
-iv
-iQ
-jt
-jR
kv
-kZ
-jP
-mp
-iN
-oc
-oF
-px
-qf
-qO
-rw
-sn
-Ya
-tT
-RA
-vR
-vK
-xC
-yh
-ze
-zT
-AD
-Bl
-Cg
-CM
-Dz
-Ej
-EP
-Fs
-FU
-Gm
-GH
-Hi
-HH
-Ie
-IA
-Ja
-Jx
-JQ
-Kp
-KH
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+kH
+je
+lh
+lH
+lH
+lH
+nu
+lH
+ok
+oK
+le
+mH
+mH
+mH
+rD
+af
+tm
+uh
+uX
+vO
+wu
+wX
+sp
+yA
+zv
+Aq
+Aw
+Ck
+Dq
+DX
+ES
+FH
+Gx
+Hd
+HX
+IF
+Ju
+Ki
+KO
+Ls
+LU
+Mm
+MH
+Ni
+NH
+Oe
+OA
+Pa
+Px
+PR
+Qq
+QI
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -32759,84 +36220,84 @@ aa
aa
aa
aa
-aa
+aJ
ab
ab
ab
-ab
-ab
-aj
-aj
+aU
+gX
+hs
+hO
aY
-bi
-bv
-aj
+in
+bu
+iR
cs
cZ
dt
-aj
-dR
-dR
+ds
+ds
+ds
eY
-eY
-eY
-dR
-dR
-gH
-hm
-hL
-iB
-iP
-ju
-jS
-kw
-la
-jP
-mq
-iN
-od
-od
-od
-od
-od
-od
-sn
-ZG
-tU
-uQ
-vS
-vK
-xC
-yg
-zd
-zU
-AE
-Bm
-Ch
-CK
-DA
-Ek
-Ei
-Ft
-Ei
-Gn
-Fp
-Hj
-EJ
-If
-Iz
-Jb
-Jy
-JR
-Kq
-KH
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+kI
+je
+li
+lH
+mm
+mO
+ns
+mm
+ol
+oL
+le
+iq
+af
+qT
+rE
+af
+tn
+tn
+tn
+tn
+tn
+tn
+sp
+yB
+zw
+Ar
+Ax
+Ck
+Dq
+DW
+ER
+FI
+Gy
+He
+HY
+ID
+Jv
+Kj
+Kh
+Lt
+Kh
+Mn
+Lp
+Nj
+KI
+Of
+Oz
+Pb
+Py
+PS
+Qr
+QI
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -32901,84 +36362,84 @@ aa
aa
aa
aa
-aa
+aJ
ab
ab
ab
-ab
-ab
-aj
-aj
-aj
-aj
-aj
-aj
-ct
-da
-du
+aU
+bk
+ht
+hP
+bJ
+aU
+iH
+iT
+je
+je
+je
dN
en
eF
+je
+je
+je
eZ
-fo
-fE
-eZ
-gu
-gL
-hs
-hY
-ir
-iR
-jv
-jT
-jP
-kX
-jP
-mr
-iN
-od
-oG
-oG
-oG
-oG
-od
-sn
-Np
-tU
-uP
-sq
-vK
-xB
-yi
-zf
-zV
-AF
-Bn
-Ci
-CK
-DB
-El
-EQ
-Fu
-FV
-Go
-Dw
-Hk
-HI
-Ig
-Iw
-Jc
-Jz
-JS
-Kr
-KH
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+lI
+mn
+mN
+nt
+nS
+om
+oI
+le
+af
+af
+Re
+fc
+af
+tn
+ui
+ui
+ui
+ui
+tn
+sp
+yC
+zw
+xb
+Bz
+Ck
+Dp
+DY
+ET
+FJ
+Gz
+Hf
+HZ
+ID
+Jw
+Kk
+KP
+Lu
+LV
+Mo
+Jr
+Nk
+NI
+Og
+Ow
+Pc
+Pz
+PT
+Qs
+QI
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -33042,85 +36503,85 @@ aa
aa
aa
aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-aj
-aj
-aj
-aj
-aj
-aj
-cu
+ed
+gg
+gg
+aU
+aU
+aU
+aU
+hu
+hu
+aU
+aU
+iI
+iU
+iU
db
-dv
-dO
-eo
-eG
-fa
-fp
-fF
-gd
-gv
-gM
-ht
-hZ
-iC
-iN
-jw
-jU
-kx
-lb
+je
+je
+je
+je
+je
+db
+af
+le
lJ
-ms
-iN
-od
-oG
-oG
-oG
-oG
-od
-sn
-Zh
-tW
-uR
-sq
-vK
-xB
-xB
-xB
-xB
-xB
-Bo
-Cj
-CK
-Dw
-Dw
-ER
-Fp
-Fp
-Dw
-Dw
-Hl
-HJ
-Ih
-xF
-Jd
-Jd
-Jd
-Jd
-Jd
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+mo
+mP
+nv
+nT
+on
+oM
+le
+pS
+fq
+qV
+fc
+af
+tn
+ui
+ui
+ui
+ui
+tn
+sp
+yD
+zx
+As
+Bz
+Ck
+Dp
+Dp
+Dp
+Dp
+Dp
+Hg
+Ia
+ID
+Jr
+Jr
+KQ
+Lp
+Lp
+Jr
+Jr
+Nl
+NJ
+Oh
+Dt
+Pd
+Pd
+Pd
+Pd
+Pd
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -33184,85 +36645,85 @@ aa
aa
aa
aa
-aa
-aa
-aa
-ab
-af
-af
-af
-af
+ed
+gg
+gj
+gl
+gx
+bb
+gY
+hv
aF
-aZ
-bj
+bm
+bz
bw
-af
-af
-af
-af
-dP
-ep
-eH
+cl
+bm
+jq
+jq
+qU
+qU
+aI
fb
fq
fG
-ge
-dR
-gN
-hu
-ia
-iD
-iN
-iN
-iN
-iN
-lc
-lH
-iN
-iN
-od
-oG
-oG
-oG
-oG
-od
-sn
-Pc
-WS
-uS
-sq
-wL
-xD
-yj
-zg
-zW
-xD
-Bp
-Ck
-CN
-DC
-Em
-ES
-Fv
-FW
-Gp
-GI
-Hm
-HK
-Ii
-IB
-Je
-JA
-JT
-Ks
-KI
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+le
+lK
+mp
+mQ
+nw
+nU
+oo
+oN
+le
+pT
+dw
+fc
+mR
+af
+tn
+ui
+ui
+ui
+ui
+tn
+sp
+yE
+zy
+As
+Bz
+Cn
+Dr
+DZ
+EU
+FK
+Dr
+Hh
+Ib
+IG
+Jx
+Kl
+KR
+Lv
+LW
+Mp
+MI
+Nm
+NK
+Oi
+OB
+Pe
+PA
+PU
+Qt
+QJ
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -33326,85 +36787,85 @@ aa
aa
aa
aa
-aa
-aa
-aa
+ed
+gg
+gg
ac
ag
ak
am
ax
-aG
-ba
-bk
-bx
+kp
+bm
+bA
+bW
bT
-cv
-dc
+df
+iq
+dw
+dw
dw
-dQ
-eq
eI
fc
fc
-fH
-gf
-dR
-gO
-gO
-ib
-iE
-iS
-jx
-jV
-ky
-ld
-ky
-mt
-iS
-od
-oG
-oG
-oG
-oG
-od
-sn
-sW
-Og
-uO
-sq
-wM
-xE
-yk
-zh
-zX
-AG
-Bq
-Cl
-zh
-DD
-En
-ET
-Cl
-Cl
-zh
-Cl
-Hn
-HL
-Ij
-IC
-Jf
-JB
-JU
-Kt
-KI
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+dw
+af
+af
+af
+af
+af
+af
+af
+af
+af
+aI
+qn
+aI
+aI
+af
+tn
+ui
+ui
+ui
+ui
+tn
+sp
+yF
+zz
+At
+Bz
+Ct
+Ds
+Ea
+EV
+FL
+GA
+Hi
+Ic
+EV
+Jy
+Km
+KS
+Ic
+Ic
+EV
+Ic
+Nn
+NL
+Oj
+OC
+Pf
+PB
+PV
+Qu
+QJ
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -33468,85 +36929,85 @@ aa
aa
aa
aa
-aa
-aa
-aa
-ad
-ah
-al
-an
+ed
+gg
+gg
+aU
+aU
+aU
+aU
ay
aH
-bb
-bl
+bm
+bB
by
-bU
+cz
cw
dd
dx
-dR
-er
-eJ
-fd
-fr
-fI
-gg
-dR
-gP
-gP
-ic
-iF
-iS
-iS
-jW
-kz
-le
-kz
-mu
-iS
-od
-od
-oG
-oG
-qP
-od
-sn
-sV
-sV
-ZF
-Zj
-Ou
-xF
-yl
-zi
-zY
-AH
-Br
-Cm
-CO
-DE
-Eo
-EU
-Eo
-FX
-CO
-DE
-Ho
-Eo
-Ik
-ID
-Je
-JC
-JV
-Ku
-KI
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+aI
+aI
+aI
+aI
+dA
+dw
+fc
+fc
+eI
+fc
+fc
+dw
+dw
+dw
+mR
+fc
+dw
+aI
+ab
+sp
+tn
+tn
+ui
+ui
+wv
+tn
+sp
+sq
+sq
+Au
+BA
+Cl
+Dt
+Eb
+EW
+FM
+GB
+Hj
+Id
+IH
+Jz
+Kn
+KT
+Kn
+LX
+IH
+Jz
+No
+Kn
+Ok
+OD
+Pe
+PC
+PW
+Qv
+QJ
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -33613,82 +37074,82 @@ aa
aa
aa
aa
-ae
-af
-af
-af
-af
-aI
-aI
+aa
+ab
+bc
+gZ
+ay
+hQ
bm
bm
bm
bm
bm
+iq
dy
-dR
-es
-eK
-fe
-fs
-fJ
-gh
-dR
-gQ
-hv
-id
-hw
-iT
-iS
-jX
-kA
-lf
-lK
-mv
-iS
-oe
-oH
-py
-py
-qQ
-rx
-so
-sX
-tX
-uU
-sw
-vK
-ua
-uX
-zj
-uX
-ua
-Bs
-Bs
-CP
-Bs
-Bs
-EV
-Fw
-Fw
-Gq
-Fw
-Fw
-EW
-Il
-IE
-Jg
-Jg
-Jg
-Jg
-Jg
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+aI
+ab
+ab
+aI
+dA
+QX
+lj
+lL
+aI
+mR
+QY
+Ra
+fc
+Rb
+fc
+Rc
+Rd
+aI
+ab
+sq
+to
+uj
+uY
+uY
+ww
+wY
+xP
+yG
+zA
+Av
+BB
+Ck
+zD
+AA
+EX
+AA
+zD
+Hk
+Hk
+II
+Hk
+Hk
+KU
+Lw
+Lw
+Mq
+Lw
+Lw
+KV
+Ol
+OE
+Pg
+Pg
+Pg
+Pg
+Pg
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -33757,80 +37218,80 @@ aa
aa
aa
ab
-Mk
-Lm
-LW
-Rs
-LW
-bm
-bz
-bV
-cx
-de
-dz
-dS
-dS
-dS
-dS
-dS
-fK
-dS
-dS
-gR
+bc
+ha
hw
-ie
-iG
-iU
-jy
-jY
-kB
-lg
-kz
-mw
-iS
-of
-oI
-oI
-oI
-oI
-ry
-sp
-sY
-tY
-uV
-sx
-vK
-uX
-LV
-zk
-zZ
-ua
-Bt
-Cn
-CQ
-DF
-Ep
-EW
-Fx
-FY
-Gr
-GJ
-Hp
-EW
-Im
-IF
-Jh
-JD
-JW
-Kv
-KJ
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+hQ
+hZ
+dA
+iq
+dA
+kM
+de
+dy
+aI
+ab
+ab
+aI
+aI
+aI
+aI
+aI
+aI
+mR
+QZ
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+ab
+sq
+tp
+uk
+uk
+uk
+uk
+wZ
+xQ
+yH
+zB
+Ay
+xX
+Ck
+AA
+Ec
+EY
+FN
+zD
+Hl
+Ie
+IJ
+JA
+Ko
+KV
+Lx
+LY
+Mr
+MJ
+Np
+KV
+Om
+OF
+Ph
+PD
+PX
+Qw
+QK
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -33899,80 +37360,80 @@ aa
aa
aa
ab
-Mk
-Lm
-LW
-Lm
-LW
-bm
-bA
-bW
-cy
-df
-dA
-dS
-et
-eL
-ff
-ft
-fL
-gi
-dS
-gS
+bc
+hb
hx
-if
-iH
+aF
+bc
+db
+eW
+pN
+iq
+iq
+dy
+aI
+ab
+ab
+ab
+ab
+ab
+ab
+ab
iV
-jz
-jZ
-kC
-lh
-lL
-mx
-iS
-og
-qR
-qR
-qR
-qR
-rz
+mS
+iV
+iV
+ab
+ab
+ab
+ab
+ab
+ab
+ab
sq
-sZ
-tZ
-uW
-vU
-wN
-uX
-yn
-zl
-yp
-ua
-Bu
-Co
-CR
-DG
-Eq
-EW
-Fy
-FZ
-Gs
-GK
-Hq
-EW
-In
-IG
-Ji
-JE
-JX
-Kw
-KJ
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+tq
+ul
+ul
+ul
+ul
+xa
+xR
+yI
+zC
+Az
+BD
+Cv
+AA
+Ed
+EZ
+Ef
+zD
+Hm
+If
+IK
+JB
+Kp
+KV
+Ly
+LZ
+Ms
+MK
+Nq
+KV
+On
+OG
+Pi
+PE
+PY
+Qx
+QK
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -34041,79 +37502,79 @@ aa
aa
aa
ab
-Mk
-Lm
-LW
-Lm
-Lm
-bm
-bB
-bX
-cz
-dg
+bc
+bc
+bc
+bc
+bc
+aI
+aI
+aI
+aI
+aI
dB
-dS
-eu
-eM
-dS
-fu
-fM
-gi
-dS
-gT
-hy
-ig
-hy
+aI
+ab
+ab
+ab
+ab
+ab
+ab
+ab
iV
-jz
-ka
-kD
-li
-lM
-my
-iS
-oh
-Uq
-XV
-XV
-qS
-rA
+mT
+nx
+iV
+ab
+ab
+ab
+ab
+ab
+ab
+ab
sq
-ta
-ua
-uX
-vV
-uX
-uX
-ym
-zl
-Aa
-ua
-Bv
-Cp
-CS
-RB
-Er
-EW
-Fz
-Ga
-NC
-Ga
-Hr
-EW
-Io
-IH
-Jh
-JF
-JY
-Kx
-KJ
-ls
-ls
-ls
-ls
-ls
-ls
+tr
+um
+uZ
+uZ
+wx
+xb
+xR
+yJ
+zD
+AA
+BE
+AA
+AA
+Ee
+EZ
+FO
+zD
+Hn
+Ig
+IL
+JC
+Kq
+KV
+Lz
+Ma
+Mt
+Ma
+Nr
+KV
+Oo
+OH
+Ph
+PF
+PZ
+Qy
+QK
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -34183,78 +37644,78 @@ aa
aa
aa
ab
-Mk
-Lm
-LW
-LW
-Lm
-bm
-bm
-bm
-bm
-bm
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+iV
+jr
dC
-dS
-dS
-dS
-dS
-fv
-fN
-gi
-dS
-gU
-hz
-ih
-hz
-iW
-iS
-kb
-kz
-lj
-kz
-mz
-iS
-XK
-Uq
-Uq
-Uq
-Uq
-rA
+iV
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+iV
+es
+mT
+iV
+ab
+ab
+ab
+ab
+ab
+ab
+ab
sq
-ta
-ua
-uY
-vW
-vW
-vW
-yp
-zl
-Ab
-ua
-Bw
-Uc
-CT
-RV
-Es
-EW
-FA
-Ga
-Gt
-Ga
-Hs
-EW
-Ip
-II
-Jj
-Jj
-Jj
-Jj
-Jj
-ls
-ls
-ls
-ls
-ls
+fZ
+um
+um
+um
+um
+xb
+xR
+yJ
+zD
+AB
+BF
+BF
+BF
+Ef
+EZ
+FP
+zD
+Ho
+Ih
+IM
+JD
+Kr
+KV
+LA
+Ma
+Mu
+Ma
+Ns
+KV
+Op
+OI
+Pj
+Pj
+Pj
+Pj
+Pj
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -34325,78 +37786,78 @@ aa
aa
aa
ab
-Mk
-Lm
-LW
-LW
-LW
-Rs
-Rs
-Lm
-Mk
-ql
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+iV
+js
dD
-dS
-ev
-eL
-ff
-fw
-fO
-gi
-dS
-gV
-hA
-ii
-hA
-gV
-iS
-kc
-kE
-lk
-lN
-mA
-iS
-Ql
-Uq
-pB
-qi
-qT
-rA
+iV
+ab
+ab
+ab
+ab
+ab
+iV
+iV
+iV
+mU
+mT
+iV
+ab
+ab
+ab
+ab
+ab
+ab
+ab
sq
-tb
-ua
-uZ
-vW
-vW
-vW
-yq
-zm
-Ac
-ua
-Bx
-Cq
-CU
-Nw
-Et
-EW
-FB
-Gb
-Gv
-GL
-Ht
-EW
-Iq
-IF
-Jk
-JG
-JZ
-Ky
-KK
-ls
-ls
-ls
-ls
-ls
+ts
+um
+va
+vP
+wy
+xb
+xR
+yK
+zD
+AC
+BF
+BF
+BF
+Eg
+Fa
+FQ
+zD
+Hp
+Ii
+IN
+JE
+Ks
+KV
+LB
+Mb
+Mv
+ML
+Nt
+KV
+Oq
+OF
+Pk
+PG
+Qa
+Qz
+QL
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -34466,79 +37927,79 @@ aa
aa
aa
aa
-Mk
-Mk
-Mk
-Mk
-Mk
-Mk
-Mk
-Lm
-aI
-aI
-aI
+gy
+gy
+gy
+gy
+gy
+gy
+gy
+gJ
+iV
+iV
+iV
dE
-dS
-dS
-dS
-dS
-dS
-dS
-dS
-dS
-gO
-gO
-gO
-gO
-gO
-iS
-iS
-kF
-iS
-iS
-iS
-iS
-sV
-oM
-pB
-qj
-qT
-rA
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+lM
+mq
+mV
+mT
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+iV
sq
-tc
-ua
+un
va
-vW
-wO
-vW
-yr
-zn
-Ad
-ua
-By
-By
-By
-By
-By
-EW
-EW
-EW
-EW
-EW
-EW
-EW
-Ir
-IG
-Jl
-JH
-Ka
-Kz
-KK
-ls
-ls
-ls
-ls
-ls
+vQ
+wy
+xb
+xR
+yL
+zD
+AD
+BF
+Cw
+BF
+Eh
+Fb
+FR
+zD
+Hq
+Hq
+Hq
+Hq
+Hq
+KV
+KV
+KV
+KV
+KV
+KV
+KV
+Or
+OG
+Pl
+PH
+Qb
+QA
+QL
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -34608,15 +38069,15 @@ aa
aa
aa
ab
-Mk
-Yx
-MG
-Sd
-Mk
-SJ
-VW
-Lm
-aI
+gy
+be
+hc
+hz
+gy
+ia
+ir
+gJ
+iV
cA
dh
dF
@@ -34627,36 +38088,36 @@ dT
fx
dT
dT
-gw
+lN
dT
dT
dT
dT
-iX
+op
dT
dT
-kG
-ll
-lO
-mB
-nh
-sV
-sV
-sV
-sV
-sV
-rD
-ss
-td
-ua
-vb
-vW
-vW
-vW
-ys
-zo
-Ae
-ua
+pU
+qo
+qW
+rF
+sr
+sq
+sq
+sq
+sq
+sq
+xc
+xS
+yM
+zD
+AE
+BF
+BF
+BF
+Ei
+Fc
+FS
+zD
ab
ab
ab
@@ -34664,23 +38125,23 @@ ab
ab
ab
ab
-xF
-Gw
-Gw
-Gw
-Gw
-Is
-IJ
-Jk
-JI
-Kb
-KA
-KK
-ls
-ls
-ls
-ls
-ls
+Dt
+Mw
+Mw
+Mw
+Mw
+Os
+OJ
+Pk
+PI
+Qc
+QB
+QL
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -34750,79 +38211,79 @@ aa
aa
aa
ab
-Mk
-Ta
-Ta
-Ta
-Mk
-Ta
-Ta
-Lm
-aI
+gy
+gK
+gK
+gK
+gy
+gK
+gK
+gJ
+iV
cB
-aI
+iV
bY
bY
bY
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-iY
-iY
-iY
-iY
-iY
-iY
-dA
-ni
-aI
-oN
-pD
-Sr
-qU
-rE
-st
-te
-ua
-St
-vX
-wP
-xG
-yt
-yp
-Af
-ua
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+iV
+rG
+ss
+iV
+uo
+vb
+vR
+wz
+xd
+xT
+yN
+zD
+AF
+BG
+Cx
+Du
+Ej
+Ef
+FT
+zD
ab
ab
ab
-DH
-DH
-DH
-DH
-xF
-Gx
-Gw
-Gw
-Gw
-It
-IK
-Jj
-Jj
-Jj
-Jj
-Jj
-ls
-ls
-ls
-ls
-ls
+JF
+JF
+JF
+JF
+Dt
+Mx
+Mw
+Mw
+Mw
+Ot
+OK
+Pj
+Pj
+Pj
+Pj
+Pj
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -34892,15 +38353,15 @@ aa
aa
aa
ab
-Mk
-Nd
-Ta
-Ta
-Ux
-QY
-XY
-Ta
-YI
+gy
+gL
+gK
+gK
+hR
+ib
+bV
+gK
+cp
cC
bY
bY
@@ -34916,55 +38377,55 @@ ab
ab
ab
ab
-iY
-jA
-kd
-kH
-lm
-lP
-mC
-YY
-oi
+iV
oO
-MC
-qk
-sV
-rF
-su
-tf
-ua
-ua
-ua
-ua
-ua
-ua
-zp
-ua
-ua
-vd
-vd
-vd
-DH
-Eu
-EX
-FC
-xF
-Gw
-Gw
-Gw
-HM
-Iu
-IL
-Jm
-ls
-ls
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+ps
+pV
+qp
+qX
+rH
+st
+tt
+up
+vc
+vS
+sq
+xe
+xU
+yO
+zD
+zD
+zD
+zD
+zD
+zD
+Fd
+zD
+zD
+AH
+AH
+AH
+JF
+Kt
+KW
+LC
+Dt
+Mw
+Mw
+Mw
+NM
+Ou
+OL
+Pm
+vt
+vt
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -35034,14 +38495,14 @@ aa
aa
aa
ab
-Mk
-Ta
-Ta
-Yr
-Mk
-QY
-XY
-Lm
+gy
+gK
+gK
+bp
+gy
+ib
+bV
+gJ
bY
cD
bY
@@ -35058,55 +38519,55 @@ fP
fP
fP
ab
-iY
-jB
-ke
-kI
-ln
-iY
-mD
-nj
-aI
-oL
-pE
-XU
-sV
-rG
-sv
-tg
-ub
-vc
-vY
-vY
-vY
-yu
-zq
-zq
-zq
-Bz
-Bz
-Bz
-DI
-Ev
-EY
-FD
-xF
-xF
-xF
-xF
-xF
-xF
-IM
-DH
+iV
+oP
+pt
+nx
+qq
+iV
+rI
+su
+iV
+uq
+vd
+vT
+sq
+xf
+xV
+yP
+zE
+AG
+BH
+BH
+BH
+Ek
+Fe
+Fe
+Fe
+Hr
+Hr
+Hr
+JG
+Ku
+KX
+LD
+Dt
+Dt
+Dt
+Dt
+Dt
+Dt
+OM
+JF
ab
-ls
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+vt
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -35176,14 +38637,14 @@ aa
aa
aa
ab
-Mk
-Vu
-Ta
-Ta
-Mk
-QY
-XY
-Lm
+gy
+gM
+gK
+gK
+gy
+ib
+bV
+gJ
bY
cE
di
@@ -35194,61 +38655,61 @@ di
cK
bY
fQ
-gj
-gx
-gj
-hB
+lk
+lO
+lk
+mW
fP
ab
-iY
-jC
-kf
-kJ
-lo
-lo
-lo
-lo
-lo
-lo
-lo
-lo
-lo
-rH
-sq
-th
-uc
-vd
-vd
-wQ
-vd
-yv
-zr
-vd
-AI
-AI
-AI
-AI
-AI
-Ew
-EZ
-FE
-Gc
-Gc
-GM
-Hu
-Hu
-Hu
-IN
-DH
+iV
+oQ
+pu
+pW
+qr
+qr
+qr
+qr
+qr
+qr
+qr
+qr
+qr
+xg
+xR
+yQ
+zF
+AH
+AH
+Cy
+AH
+El
+Ff
+AH
+GC
+GC
+GC
+GC
+GC
+Kv
+KY
+LE
+Mc
+Mc
+MM
+Nu
+Nu
+Nu
+ON
+JF
ab
ab
ab
-ls
-ls
-ls
-ls
-ls
-ls
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -35318,14 +38779,14 @@ aa
aa
aa
ab
-Mk
-Mk
-Mk
-Mk
-Mk
-QY
-XY
-Lm
+gy
+gy
+gy
+gy
+gy
+ib
+bV
+gJ
bY
cF
dj
@@ -35336,61 +38797,61 @@ eO
fg
bY
fR
-gk
-gk
-gW
-hC
+ll
+ll
+mr
+mX
fP
ab
-iY
-jD
-kg
-kK
-lp
-lQ
-mE
-mE
-UK
-oj
-pF
-qm
-qV
-rI
-sq
-th
-ud
-vd
-vZ
-wR
-vd
-yv
-zs
-Ag
-AI
-BA
-Cr
-CV
-AI
-DH
-DH
-DH
-Gd
-Gd
-Gd
-Hv
-HN
-Gd
-Gd
-DH
+iV
+oR
+pv
+pX
+qs
+qY
+rJ
+rJ
+tu
+ur
+ve
+vU
+wA
+xh
+xR
+yQ
+zG
+AH
+BI
+Cz
+AH
+El
+Fg
+FU
+GC
+Hs
+Ij
+IO
+GC
+JF
+JF
+JF
+Md
+Md
+Md
+Nv
+NN
+Md
+Md
+JF
ab
ab
ab
ab
-ls
-ls
-ls
-ls
-ls
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -35464,10 +38925,10 @@ ab
ab
ab
ab
-Mk
-QY
-XY
-Lm
+gy
+ib
+bV
+gJ
bY
cG
dk
@@ -35478,61 +38939,61 @@ eP
fh
bY
fS
-gk
-gy
-gk
-hD
+ll
+lP
+ll
+mY
fP
ab
-iY
-iY
-kh
-ke
-lo
-lo
-lo
-nk
-ok
-oQ
-lo
-lo
-qW
-rJ
-sw
-th
-ue
-vd
-wa
-wS
-vd
-yw
-zt
-Ah
-AJ
-BB
-Cs
-CW
-AI
+iV
+iV
+pw
+pt
+qr
+qr
+qr
+sv
+tv
+us
+qr
+qr
+wB
+xi
+xW
+yQ
+zH
+AH
+BJ
+CA
+AH
+Em
+Fh
+FV
+GD
+Ht
+Ik
+IP
+GC
ab
ab
-DH
-DH
-DH
-DH
-DH
-DH
-DH
-DH
-DH
+JF
+JF
+JF
+JF
+JF
+JF
+JF
+JF
+JF
ab
ab
ab
ab
ab
-ls
-ls
-ls
-ls
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -35606,10 +39067,10 @@ aa
ab
ab
ab
-Mk
-Sq
-XY
-Lm
+gy
+ic
+bV
+gJ
bY
cH
dk
@@ -35620,41 +39081,41 @@ eQ
fi
fy
fT
-gl
-gz
-gX
-hE
+lm
+lQ
+ms
+mZ
fP
-Lm
-Lm
-iY
-ki
-ke
-lo
-lR
-mF
-nl
-nl
-nl
-pG
-qn
-qX
+gJ
+gJ
+iV
+px
+pt
+qr
+qZ
rK
-sx
-th
-uf
-vd
-wb
-wT
-vd
-yx
-zu
-Ai
-AK
-BC
-Ct
-CX
-AI
+sw
+sw
+sw
+vf
+vV
+wC
+xj
+xX
+yQ
+zI
+AH
+BK
+CB
+AH
+En
+Fi
+FW
+GE
+Hu
+Il
+IQ
+GC
ab
ab
ab
@@ -35672,9 +39133,9 @@ ab
ab
ab
ab
-ls
-ls
-ls
+vt
+vt
+vt
aa
aa
aa
@@ -35748,10 +39209,10 @@ aa
ab
ab
ab
-Mk
-QY
-XY
-Lm
+gy
+ib
+bV
+gJ
bY
cI
dk
@@ -35762,41 +39223,41 @@ eP
fj
bY
fR
-gk
-gy
-gk
-hF
+ll
+lP
+ll
+na
fP
-LW
-LW
-iY
-kj
-kL
-lq
-lS
-mG
-nm
-ol
-oR
-pH
-qo
-qY
+hy
+hy
+iV
+py
+pY
+qt
+ra
rL
-sy
-ti
-ug
-ui
-ui
-ui
-ui
-yy
-zv
-Aj
-zv
-zv
-zv
-zv
-zv
+sx
+tw
+ut
+vg
+vW
+wD
+xk
+xY
+yR
+zJ
+zL
+zL
+zL
+zL
+Eo
+Fj
+FX
+Fj
+Fj
+Fj
+Fj
+Fj
ab
ab
ab
@@ -35816,7 +39277,7 @@ ab
ab
ab
ab
-ls
+vt
aa
aa
aa
@@ -35890,10 +39351,10 @@ aa
ab
ab
ab
-Mk
-QY
-XY
-Lm
+gy
+ib
+bV
+gJ
bY
cJ
dl
@@ -35904,42 +39365,42 @@ eR
dj
bY
fU
-gk
-gk
-gY
-hG
+ll
+ll
+mt
+nb
fP
-LW
-Xn
-iY
-iY
-iY
-lo
-lo
-mH
-nn
-om
-oS
-pI
-qp
-qZ
+hy
+eM
+iV
+iV
+iV
+qr
+qr
rM
-sz
-tj
-uh
-ve
-wc
-wU
-ui
-ui
-ui
-Ak
-AL
-BD
-Cu
-CY
-zv
-zv
+sy
+tx
+uu
+vh
+vX
+wE
+xl
+xZ
+yS
+zK
+AI
+BL
+CC
+zL
+zL
+zL
+FY
+GF
+Hv
+Im
+IR
+Fj
+Fj
ab
ab
ab
@@ -36032,10 +39493,10 @@ aa
ab
ab
ab
-Mk
-QY
-XY
-Lm
+gy
+ib
+bV
+gJ
bY
cK
dm
@@ -36046,42 +39507,42 @@ dm
cK
bY
fV
-gm
-gA
-gm
-hH
+ln
+lR
+ln
+nc
fP
-LW
-Lm
-Lm
-Lm
-Lm
-Lm
-lo
-mI
-no
-on
-oT
-pJ
-qq
-qY
+hy
+gJ
+gJ
+gJ
+gJ
+gJ
+qr
rN
-sA
-tj
-uh
-vf
-wd
-wV
-wV
-yz
-ui
-Al
-AM
-AM
-AM
-AO
-DJ
-zv
+sz
+ty
+uv
+vi
+vY
+wD
+xm
+ya
+yS
+zK
+AJ
+BM
+CD
+CD
+Ep
+zL
+FZ
+GG
+GG
+GG
+GI
+JH
+Fj
ab
ab
ab
@@ -36174,10 +39635,10 @@ aa
ab
ab
ab
-Mk
-QY
-XY
-Lm
+gy
+ib
+bV
+gJ
bY
bY
bY
@@ -36193,37 +39654,37 @@ fP
fP
fP
fP
-LW
-Xd
-XD
-XD
-XD
-Lm
-lo
-mJ
-np
-lo
-oU
-oU
-oU
-lo
-rN
+hy
+oq
+cy
+cy
+cy
+gJ
+qr
+rO
sA
-tk
-ui
-vg
-we
-wW
-xH
-yA
-ui
-Am
-AN
-BE
-Cv
-CZ
-DK
-zv
+qr
+uw
+uw
+uw
+qr
+xm
+ya
+yT
+zL
+AK
+BN
+CE
+Dv
+Eq
+zL
+Ga
+GH
+Hw
+In
+IS
+JI
+Fj
ab
ab
ab
@@ -36316,56 +39777,56 @@ aa
ab
ab
ab
-Mk
-PU
-Uj
-Lm
-Lm
-Lm
+gy
+id
+is
+gJ
+gJ
+gJ
bY
bY
dU
bY
bY
-Lm
-Lm
-Lm
-Lm
-Lm
-Lm
-Lm
-Lm
-Lm
-Lm
-QY
-QY
-QY
-Lm
-lr
-mK
-nq
-lr
-oV
-pK
-pK
-ra
-rO
+gJ
+gJ
+gJ
+gJ
+gJ
+gJ
+gJ
+gJ
+gJ
+gJ
+ib
+ib
+ib
+gJ
+qu
+rP
sB
-tl
-uj
-vh
-wf
-wX
-xI
-yB
-uh
-An
-AO
-BF
-Cw
-AM
-DL
-zv
+qu
+ux
+vj
+vj
+wF
+xn
+yb
+yU
+zM
+AL
+BO
+CF
+Dw
+Er
+zK
+Gb
+GI
+Hx
+Io
+GG
+JJ
+Fj
ab
ab
ab
@@ -36458,56 +39919,56 @@ aa
ab
ab
ab
-Mk
-QY
-QY
-QY
-Ts
-Lm
-Lm
+gy
+ib
+ib
+ib
+iW
+gJ
+gJ
bY
bY
bY
-Ll
-Ta
-Ta
-Ta
-Ta
-Zr
-Ta
-Rs
-Lm
-Vk
-Mk
-PU
-QY
-QY
-Lm
-lr
-mL
-nr
-lr
-oW
-pL
-pL
-rb
-pL
-sA
-tm
-uh
-vi
-wg
-wY
-wV
-yC
-uh
-Ao
-AP
-BG
-Cx
-Da
-DM
-zv
+ki
+gK
+gK
+gK
+gK
+eg
+gK
+jD
+gJ
+nV
+gy
+id
+ib
+ib
+gJ
+qu
+rQ
+sC
+qu
+uy
+vk
+vk
+wG
+vk
+ya
+yV
+zK
+AM
+BP
+CG
+CD
+Es
+zK
+Gc
+GJ
+Hy
+Ip
+IT
+JK
+Fj
ab
ab
ab
@@ -36600,56 +40061,56 @@ aa
aa
ab
ab
-Mk
-Ta
-Ta
-QY
-QY
-Vy
-Lm
-Lm
-Lm
-Lm
-Ta
-XD
-XD
-XD
-XD
-XD
-XD
-XD
-RZ
-Ta
-Lm
-Lm
-Lm
-Ta
-Lm
-lr
-mM
-ns
-oo
-oX
-pM
-pM
-rc
-pM
-sz
-tn
-uk
-vj
-ui
-wZ
-uh
-uh
-ui
-zv
-zv
-BH
-Cy
-zv
-DN
-zv
+gy
+gK
+gK
+ib
+ib
+jf
+gJ
+gJ
+gJ
+gJ
+gK
+cy
+cy
+cy
+cy
+cy
+cy
+cy
+ny
+gK
+gJ
+gJ
+gJ
+gK
+gJ
+qu
+rR
+sD
+tz
+uz
+vl
+vl
+wH
+vl
+xZ
+yW
+zN
+AN
+zL
+CH
+zK
+zK
+zL
+Fj
+Fj
+Hz
+Iq
+Fj
+JL
+Fj
ab
ab
ab
@@ -36742,56 +40203,56 @@ aa
aa
aa
aa
-Mk
-Mb
-Qn
-Lw
-QY
-QY
-Vy
-Rs
-LW
-TS
-Rd
-QY
-QY
-Sb
-Ud
-Rw
-RY
-WV
-Ok
-XY
-Lm
-Lm
-Lm
-Ta
-Lm
-lr
-mN
-nt
-op
-oY
-pL
-pL
-rd
-pL
-sA
-to
-ul
+gy
+ie
+it
+iJ
+ib
+ib
+jf
+jD
+hy
+jY
+kj
+ib
+ib
+kQ
+lo
+lS
+mu
+nd
+nz
+bV
+gJ
+gJ
+gJ
+gK
+gJ
+qu
+rS
+sE
+tA
+uA
vk
-wh
-xa
-xJ
-yD
-zw
-Ap
-AQ
-BI
-Cz
-Db
-DO
-ul
+vk
+wI
+vk
+ya
+yX
+zO
+AO
+BQ
+CI
+Dx
+Et
+Fk
+Gd
+GK
+HA
+Ir
+IU
+JM
+zO
ab
ab
ab
@@ -36886,54 +40347,54 @@ aa
aa
aa
aa
-Yz
-QC
-Oj
-QY
-QY
-Vy
-XD
-XD
-MW
-QY
-Mk
-Mk
-Mk
-XO
-Mk
-Mk
-QG
-XY
-Lm
-Ne
-Ym
-Ta
-Lm
-lr
-mO
-nu
-lr
-oZ
-pN
-qr
-qr
-rP
-sC
-tp
-ul
-vl
-wi
-xb
-xK
-wl
-wl
-wl
-AR
-BJ
-CA
-wl
-DP
-ul
+bX
+iK
+iX
+ib
+ib
+jf
+cy
+cy
+kk
+ib
+gy
+gy
+gy
+em
+gy
+gy
+nA
+bV
+gJ
+oS
+fp
+gK
+gJ
+qu
+rT
+sF
+qu
+uB
+vm
+vZ
+vZ
+xo
+yc
+yY
+zO
+AP
+BR
+CJ
+Dy
+BU
+BU
+BU
+GL
+HB
+Is
+BU
+JN
+zO
ab
ab
ab
@@ -37028,54 +40489,54 @@ aa
aa
aa
aa
-Mk
-Mb
-Qn
-Ta
-QY
-QY
-QY
-QY
-QY
-QY
-Mk
-Yr
-Ta
-Md
-Yr
-Mk
-UO
-XY
-XD
-SQ
-Ta
-Lm
-Lm
-lr
-mP
-nv
-oq
-mU
-pO
-qs
-qs
-rQ
-sD
-lr
-lr
-vm
-wi
-xb
-xL
-yE
-yE
-yE
-AS
-BJ
-CA
-wl
-DQ
-ul
+gy
+ie
+it
+gK
+ib
+ib
+ib
+ib
+ib
+ib
+gy
+bp
+gK
+lT
+bp
+gy
+nB
+bV
+cy
+oT
+gK
+gJ
+gJ
+qu
+rU
+sG
+tB
+rZ
+vn
+wa
+wa
+xp
+yd
+qu
+qu
+AQ
+BR
+CJ
+Dz
+Eu
+Eu
+Eu
+GM
+HB
+Is
+BU
+JO
+zO
ab
ab
ab
@@ -37172,52 +40633,52 @@ aa
aa
aa
aa
-Xj
-Mk
-Mz
-Mk
-Mk
-Mk
-Mk
-Mk
-Mk
-Ob
-Ta
-SD
-Ta
-Mk
-Xk
-Ud
-Ud
-Pk
-Lm
-Lm
-lr
-lr
-mQ
-nw
-or
-pa
-pP
-qt
-re
-rR
-sE
-tq
-um
-vn
-wj
-xc
-xM
-yF
-zx
-yF
-AT
-BK
-CB
-Dc
-ul
-ul
+iY
+gy
+jt
+gy
+gy
+gy
+gy
+gy
+gy
+kR
+gK
+lU
+gK
+gy
+nC
+lo
+lo
+oU
+gJ
+gJ
+qu
+qu
+rV
+sH
+tC
+uC
+vo
+wb
+wJ
+xq
+ye
+yZ
+zP
+AR
+BS
+CK
+DA
+Ev
+Fl
+Ev
+GN
+HC
+It
+IV
+zO
+zO
ab
ab
ab
@@ -37315,50 +40776,50 @@ aa
aa
aa
aa
-Mk
-Mk
-Mk
-VP
-Of
-OX
-Qi
-Mk
-Ta
-Yr
-Ta
-Ta
-Mk
-Mk
-Mk
-ZC
-ZC
-Ta
-Lw
-lr
-lT
-mR
-nx
-os
-pb
-pQ
-pb
-pb
-rS
-sF
-tr
-un
-vo
-wk
-xd
-wk
-yG
-yG
-yG
-yG
-BL
-wl
-Dd
-ul
+gy
+gy
+gy
+jP
+jZ
+kl
+kw
+gy
+gK
+bp
+gK
+gK
+gy
+gy
+gy
+eS
+eS
+gK
+iJ
+qu
+rb
+rW
+sI
+tD
+uD
+vp
+uD
+uD
+xr
+yf
+za
+zQ
+AS
+BT
+CL
+BT
+Ew
+Ew
+Ew
+Ew
+HD
+BU
+IW
+zO
ab
ab
ab
@@ -37459,48 +40920,48 @@ aa
aa
ab
ab
-Mk
-PS
-Lc
-Nk
-Qq
-Zx
-Lp
-Op
-Ta
-Ta
-Mk
+gy
+jQ
+ka
+km
+kx
+dv
+kS
+lp
+gK
+gK
+gy
ab
-Mk
-Ta
-Ta
-Ta
-Lx
-lr
-lU
-mS
-ny
-ot
-ny
-pR
+gy
+gK
+gK
+gK
+pZ
qu
-ny
-rT
-sG
-ts
-lr
-vp
-wl
-xe
-wl
-wl
-wl
-wl
-wl
-BM
-CC
-AX
-ul
+rc
+rX
+sJ
+tE
+sJ
+vq
+wc
+sJ
+xs
+yg
+zb
+qu
+AT
+BU
+CM
+BU
+BU
+BU
+BU
+BU
+HE
+Iu
+GR
+zO
ab
ab
ab
@@ -37601,48 +41062,48 @@ aa
aa
aa
ab
-Mk
-PS
-Lc
-Xv
-Yr
-Mk
-Ta
-Ta
-US
-MU
-Mk
+gy
+jQ
+ka
+dc
+bp
+gy
+gK
+gK
+lV
+mv
+gy
ab
-Mk
-Yj
-Ta
-Ta
-Yp
-lr
-lr
-mT
-mS
-ny
-ny
-pR
-ny
-ny
-ny
-sG
-tt
-uo
+gy
+eU
+gK
+gK
+fE
+qu
+qu
+rY
+rX
+sJ
+sJ
vq
-wl
-wl
-wl
-yE
-yE
-yE
-yE
-wl
-CC
-De
-ul
+sJ
+sJ
+sJ
+yg
+zc
+zR
+AU
+BU
+BU
+BU
+Eu
+Eu
+Eu
+Eu
+BU
+Iu
+IX
+zO
ab
ab
ab
@@ -37743,48 +41204,48 @@ aa
aa
aa
ab
-Mk
-Ta
-Qs
-Nn
-QZ
-Mk
-Mk
-Uf
-SS
-Mk
-Mk
+gy
+gK
+kb
+kn
+ky
+gy
+gy
+lq
+lW
+gy
+gy
ab
-Mk
-NE
-Ta
-Ta
-OM
-lr
-lr
-mU
-nz
-ou
-pc
-pS
-qv
-rf
-rU
-sH
-tu
-uo
+gy
+or
+gK
+gK
+qa
+qu
+qu
+rZ
+sK
+tF
+uE
vr
-wl
-xf
-xN
-yH
-wl
-xf
-AU
-AU
-CD
-AX
-ul
+wd
+wK
+xt
+yh
+zd
+zR
+AV
+BU
+CN
+DB
+Ex
+BU
+CN
+GO
+GO
+Iv
+GR
+zO
ab
ab
ab
@@ -37802,7 +41263,7 @@ ab
ab
ab
ab
-ls
+vt
ab
aa
aa
@@ -37885,48 +41346,48 @@ aa
aa
aa
ab
-Mk
-Mk
-Mk
-Mk
-Mk
-Mk
-Oo
-PV
-Ua
-Qa
-Mk
-ab
-Mk
-Ta
-Ta
-RK
-YQ
-Mk
-ab
+gy
+gy
+gy
+gy
+gy
+gy
+kT
lr
-lr
-lr
-lr
-lr
-lr
-lr
-lr
-lr
-lr
-lr
-vs
-wl
-xg
-xO
-yI
-zy
-Aq
-AV
-BN
-BN
-Nm
-ul
+lX
+mw
+gy
+ab
+gy
+gK
+gK
+pz
+fF
+gy
+ab
+qu
+qu
+qu
+qu
+qu
+qu
+qu
+qu
+qu
+qu
+qu
+AW
+BU
+CO
+DC
+Ey
+Fm
+Ge
+GP
+HF
+HF
+IY
+zO
ab
ab
ab
@@ -37944,8 +41405,8 @@ ab
ab
ab
ab
-ls
-ls
+vt
+vt
aa
aa
aa
@@ -38032,19 +41493,19 @@ ab
ab
ab
ab
-Mk
-VD
-Ue
-Ue
-Xu
-Mk
+gy
+kU
+ls
+ls
+er
+gy
ab
-Mk
-Pg
-MM
-Vr
-Ps
-Mk
+gy
+os
+oV
+pA
+qb
+gy
ab
ab
ab
@@ -38056,38 +41517,38 @@ ab
ab
ab
ab
-ul
+zO
+AX
+AX
+CP
+DD
+Ez
+CP
+Ez
+GQ
+CP
+AX
+AX
+zO
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+vt
+vt
+ab
+ab
+ab
vt
vt
-xh
-xP
-yJ
-xh
-yJ
-AW
-xh
vt
vt
-ul
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ls
-ls
-ab
-ab
-ab
-ls
-ls
-ls
-ls
aa
aa
aa
@@ -38174,19 +41635,19 @@ aa
ab
ab
ab
-Mk
-Mk
-LZ
-LZ
-Mk
-Mk
+gy
+gy
+lt
+lt
+gy
+gy
ab
-Mk
-Mk
-Mk
-Mk
-Mk
-Mk
+gy
+gy
+gy
+gy
+gy
+gy
ab
ab
ab
@@ -38197,38 +41658,38 @@ ab
ab
ab
ab
-ls
-ls
-ls
-ls
-xi
-xO
-wl
-xh
-wl
-AX
-BO
+vt
+vt
+vt
+vt
+CQ
+DC
+BU
+CP
+BU
+GR
+HG
aa
aa
-nB
-nB
+ae
+ae
aa
aa
-nB
+ae
ab
ab
ab
ab
-ls
-ls
-ls
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+vt
+vt
+vt
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -38316,11 +41777,11 @@ aa
aa
aa
ab
-Mk
-Mk
-Mk
-Mk
-Mk
+gy
+gy
+gy
+gy
+gy
aa
aa
aa
@@ -38338,35 +41799,35 @@ ab
ab
ab
ab
-ls
-ls
-ls
-ls
-ls
-xj
-xP
-yJ
-zz
-yJ
-AW
-BP
-nB
-nB
-nB
-nB
-nB
-nB
-nB
+vt
+vt
+vt
+vt
+vt
+CR
+DD
+Ez
+Fn
+Ez
+GQ
+HH
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
ab
ab
-ls
-ls
-ls
-ls
-ls
-ls
-ls
+vt
+vt
+vt
+vt
+vt
+vt
+vt
aa
aa
aa
@@ -38478,24 +41939,24 @@ ab
ab
ab
ab
-ls
-ls
-ls
-ls
-ls
-vu
-vu
-xk
-xk
-xk
-xk
-xk
-xk
-vu
-vu
-vu
-nB
-nB
+vt
+vt
+vt
+vt
+vt
+AY
+AY
+CS
+CS
+CS
+CS
+CS
+CS
+AY
+AY
+AY
+ae
+ae
aa
aa
aa
@@ -38506,9 +41967,9 @@ aa
aa
aa
aa
-ls
-ls
-ls
+vt
+vt
+vt
aa
aa
aa
@@ -38624,20 +42085,20 @@ aa
aa
aa
aa
-nB
-vu
-vu
-xk
-xk
-xk
-xk
-xk
-xk
-vu
-vu
-vu
-vu
-nB
+ae
+AY
+AY
+CS
+CS
+CS
+CS
+CS
+CS
+AY
+AY
+AY
+AY
+ae
aa
aa
aa
@@ -38766,20 +42227,20 @@ aa
aa
aa
aa
-nB
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-nB
+ae
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+ae
aa
aa
aa
@@ -38887,16 +42348,16 @@ aa
aa
aa
aa
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
aa
aa
aa
@@ -38908,20 +42369,20 @@ aa
aa
aa
aa
-nB
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-nB
+ae
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+ae
aa
aa
aa
@@ -39029,16 +42490,16 @@ aa
aa
aa
aa
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
aa
aa
aa
@@ -39051,19 +42512,19 @@ aa
aa
aa
aa
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-nB
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+ae
aa
aa
aa
@@ -39171,16 +42632,16 @@ aa
aa
aa
aa
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
aa
aa
aa
@@ -39193,19 +42654,19 @@ aa
aa
aa
aa
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-nB
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+ae
aa
aa
aa
@@ -39313,16 +42774,16 @@ aa
aa
aa
aa
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
aa
aa
aa
@@ -39335,19 +42796,19 @@ aa
aa
aa
aa
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-vu
-nB
-nB
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+AY
+ae
+ae
aa
aa
aa
@@ -39455,16 +42916,16 @@ aa
aa
aa
aa
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
-gB
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
+lY
aa
aa
aa
@@ -39478,19 +42939,19 @@ aa
aa
aa
aa
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
-nB
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
aa
aa
aa
diff --git a/maps/tether/tether_areas.dm b/maps/tether/tether_areas.dm
index a58b087993..9684dc5c37 100644
--- a/maps/tether/tether_areas.dm
+++ b/maps/tether/tether_areas.dm
@@ -89,4 +89,8 @@
/area/engineering/shaft
name = "\improper Engineering Electrical Shaft"
- icon_state = "substation"
\ No newline at end of file
+ icon_state = "substation"
+
+/area/vacant/vacant_office
+ name = "\improper Vacant Office"
+ icon_state = "vacant_site"
\ No newline at end of file
diff --git a/maps/tether/tether_areas2.dm b/maps/tether/tether_areas2.dm
index e0f3f14120..659518148d 100644
--- a/maps/tether/tether_areas2.dm
+++ b/maps/tether/tether_areas2.dm
@@ -167,7 +167,7 @@
/area/tether/surfacebase/security/common
name = "\improper Surface Security Room"
/area/tether/surfacebase/security/armory
- name = "\improper Surface Armoary"
+ name = "\improper Surface Armory"
/area/tether/surfacebase/security/checkpoint
name = "\improper Surface Checkpoint Office"
/area/tether/surfacebase/security/hallway
@@ -360,6 +360,9 @@
/area/security/hallway
name = "\improper Security Hallway"
icon_state = "security"
+/area/security/hallwayaux
+ name = "\improper Security Armory Hallway"
+ icon_state = "security"
/area/security/forensics
name = "\improper Forensics Lab"
icon_state = "security"
@@ -372,15 +375,21 @@
/area/security/brig/bathroom
name = "\improper Brig Bathroom"
icon_state = "security"
-/area/security/armory/green
- name = "\improper Armory - Green"
- icon_state = "security_equip_storage"
/area/security/armory/blue
name = "\improper Armory - Blue"
icon_state = "armory"
/area/security/armory/red
name = "\improper Armory - Red"
icon_state = "red2"
+/area/security/observation
+ name = "\improper Brig Observation"
+ icon_state = "riot_control"
+/area/security/eva
+ name = "\improper Security EVA"
+ icon_state = "security_equip_storage"
+/area/security/recstorage
+ name = "\improper Brig Recreation Storage"
+ icon_state = "brig"
/area/engineering/atmos/backup
name = "\improper Backup Atmospherics"
diff --git a/maps/tether/tether_things.dm b/maps/tether/tether_things.dm
index 55a5dace44..859ef9667c 100644
--- a/maps/tether/tether_things.dm
+++ b/maps/tether/tether_things.dm
@@ -378,11 +378,11 @@ var/global/list/latejoin_tram = list()
reagents.add_reagent("paracetamol", 5)
//"Red" Armory Door
-/obj/machinery/door/airlock/multi_tile/metal/red
+/obj/machinery/door/airlock/security/armory
name = "Red Armory"
//color = ""
-/obj/machinery/door/airlock/multi_tile/metal/red/allowed(mob/user)
+/obj/machinery/door/airlock/security/armory/allowed(mob/user)
if(get_security_level() in list("green","blue"))
return FALSE